8 lines
343 B
MySQL
8 lines
343 B
MySQL
|
|
-- Migration 018: Add filmstrip_s3_key to assets
|
||
|
|
-- Stores the S3 path to a JSON array of base64 JPEG frames generated
|
||
|
|
-- server-side by the filmstrip worker. Allows the UI to fetch a pre-built
|
||
|
|
-- filmstrip instead of seeking through the proxy in the browser.
|
||
|
|
|
||
|
|
ALTER TABLE assets
|
||
|
|
ADD COLUMN IF NOT EXISTS filmstrip_s3_key TEXT DEFAULT NULL;
|