AppFlowy/backend/migrations/20210909115140_doc.sql

8 lines
224 B
MySQL
Raw Normal View History

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