Add naming consistency changes for file_data_fragment table

This commit is contained in:
Andrey Antukh 2024-08-07 16:18:17 +02:00
parent f8cbe1dfbf
commit 86a732600b
13 changed files with 44 additions and 35 deletions

View file

@ -0,0 +1,8 @@
ALTER TABLE file_data_fragment
ADD COLUMN data bytea NULL;
UPDATE file_data_fragment
SET data = content;
ALTER TABLE file_data_fragment
DROP COLUMN content;