Add old fields, fix md5, fix migratins.
All checks were successful
/ release (push) Successful in 50s
All checks were successful
/ release (push) Successful in 50s
This commit is contained in:
parent
d25890ad26
commit
808953f46f
4 changed files with 24 additions and 2 deletions
|
@ -1,2 +1,2 @@
|
|||
ALTER TABLE files
|
||||
DROP IF EXISTS ffprobe;
|
||||
DROP IF EXISTS ffprobe_data;
|
||||
|
|
4
migrations/000020_alter_files_table_transcode.down.sql
Normal file
4
migrations/000020_alter_files_table_transcode.down.sql
Normal file
|
@ -0,0 +1,4 @@
|
|||
ALTER TABLE tasks
|
||||
DROP IF EXISTS old_md5,
|
||||
DROP IF EXISTS old_ffprobe_data,
|
||||
DROP IF EXISTS old_size bigint;
|
4
migrations/000020_alter_files_table_transcode.up.sql
Normal file
4
migrations/000020_alter_files_table_transcode.up.sql
Normal file
|
@ -0,0 +1,4 @@
|
|||
ALTER TABLE libraries
|
||||
ADD old_md5 uuid,
|
||||
ADD old_ffprobe_data JSONB,
|
||||
ADD old_size bigint;
|
Loading…
Add table
Add a link
Reference in a new issue