diff options
Diffstat (limited to 'hackmd_schema.sql')
-rw-r--r-- | hackmd_schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hackmd_schema.sql b/hackmd_schema.sql index 139ce15b..ac7d671a 100644 --- a/hackmd_schema.sql +++ b/hackmd_schema.sql @@ -37,7 +37,7 @@ CREATE TABLE notes ( id character varying(256) NOT NULL, owner character varying(256) NOT NULL, content text, - title character varying(256), + title text, create_time timestamp without time zone DEFAULT now() NOT NULL, update_time timestamp without time zone DEFAULT now() NOT NULL ); |