Changed db schema, table "note", column "title", type from "character varying(256)" to "text".
To make very long title possible
This commit is contained in:
parent
90ae615236
commit
09a1e662f9
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ CREATE TABLE notes (
|
||||||
id character varying(256) NOT NULL,
|
id character varying(256) NOT NULL,
|
||||||
owner character varying(256) NOT NULL,
|
owner character varying(256) NOT NULL,
|
||||||
content text,
|
content text,
|
||||||
title character varying(256),
|
title text,
|
||||||
create_time timestamp without time zone DEFAULT now() NOT NULL,
|
create_time timestamp without time zone DEFAULT now() NOT NULL,
|
||||||
update_time timestamp without time zone DEFAULT now() NOT NULL
|
update_time timestamp without time zone DEFAULT now() NOT NULL
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue