AppFlowy/backend/migrations/20211015065001_trash.sql

7 lines
176 B
MySQL
Raw Normal View History

-- 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
);