ente/server/migrations/84_add_cast_column.up.sql

6 lines
164 B
MySQL
Raw Normal View History

2024-04-25 07:44:37 +00:00
--- Delete all rows from casting table and add a non-nullable column called ip
BEGIN;
DELETE FROM casting;
ALTER TABLE casting ADD COLUMN ip text NOT NULL;
COMMIT;