diff --git a/pkg/database/migrations/000005_remove_null_from_lists.up.sql b/pkg/database/migrations/000005_remove_null_from_lists.up.sql index ec93134..5299d7f 100644 --- a/pkg/database/migrations/000005_remove_null_from_lists.up.sql +++ b/pkg/database/migrations/000005_remove_null_from_lists.up.sql @@ -2,5 +2,5 @@ BEGIN; ALTER TABLE messages ALTER COLUMN previous_content SET NOT NULL; ALTER TABLE messages - ALTER COLUMN prevous_content SET DEFAULT array[]::varchar[]; + ALTER COLUMN previous_content SET DEFAULT array[]::varchar[]; COMMIT;