AppFlowy/backend/migrations/20210824033748_view.sql

13 lines
387 B
MySQL
Raw Normal View History

2021-08-24 05:10:53 +00:00
-- Add migration script here
CREATE TABLE view_table(
id uuid NOT NULL,
PRIMARY KEY (id),
belong_to_id TEXT NOT NULL,
name TEXT NOT NULL,
description TEXT NOT NULL,
modified_time timestamptz NOT NULL,
create_time timestamptz NOT NULL,
thumbnail TEXT NOT NULL,
view_type INTEGER NOT NULL,
is_trash BOOL NOT NULL DEFAULT false
);