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

6 lines
149 B
SQL

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