2025-04-18 13:34:13 +08:00

5 lines
183 B
SQL

-- Your SQL goes here
ALTER TABLE chat_table
ADD COLUMN is_sync BOOLEAN DEFAULT TRUE NOT NULL;
ALTER TABLE chat_message_table
ADD COLUMN is_sync BOOLEAN DEFAULT TRUE NOT NULL;