AppFlowy/backend/migrations/20210909115140_doc.sql

8 lines
224 B
MySQL
Raw Normal View History

2021-09-10 15:53:24 +08:00
-- Add migration script here
CREATE TABLE IF NOT EXISTS doc_table(
id uuid NOT NULL,
PRIMARY KEY (id),
2021-09-26 16:39:57 +08:00
-- data bytea NOT NULL DEFAULT '',
data TEXT NOT NULL DEFAULT '',
rev_id bigint NOT NULL DEFAULT 0
2021-09-10 15:53:24 +08:00
);