AppFlowy/backend/migrations/20211015065001_trash.sql
2021-10-15 17:09:50 +08:00

7 lines
176 B
SQL

-- Add migration script here
CREATE TABLE IF NOT EXISTS trash_table(
id uuid NOT NULL,
PRIMARY KEY (id),
user_id TEXT NOT NULL,
ty INTEGER NOT NULL DEFAULT 0
);