AppFlowy/backend/migrations/20210909115140_doc.sql
2021-09-14 16:22:44 +08:00

6 lines
148 B
SQL

-- Add migration script here
CREATE TABLE IF NOT EXISTS doc_table(
id uuid NOT NULL,
PRIMARY KEY (id),
data bytea NOT NULL DEFAULT ''
);