Skip to content

Commit

Permalink
t[oi
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed May 7, 2024
1 parent c523fc3 commit d89fe87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migration.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ SAVEPOINT files;
ALTER TABLE files ALTER COLUMN filename SET NOT NULL; -- always require filename
ALTER TABLE files DROP COLUMN IF EXISTS attachment; -- we don't have these anymore
ALTER TABLE files ADD COLUMN IF NOT EXISTS annotation TEXT;
ALTER TABLE files RENAME index TO file_index; -- bad column name
ALTER TABLE files RENAME COLUMN index TO file_index; -- bad column name

SAVEPOINT drops;
DROP TABLE IF EXISTS bans CASCADE; -- no longer needed
Expand Down

0 comments on commit d89fe87

Please sign in to comment.