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
@ -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…
x
Reference in New Issue
Block a user