Skip to content
Snippets Groups Projects
Verified Commit 857a0f24 authored by Damien's avatar Damien
Browse files

FEAT Note type structure

parent daa8d59b
No related branches found
No related tags found
No related merge requests found
......@@ -784,6 +784,7 @@ CREATE TABLE notes
user_id character varying(128) NOT NULL,
creation_date timestamp without time zone NOT NULL,
note_text text NOT NULL,
type CHARACTER VARYING (32) DEFAULT 'resource' NOT NULL,
CONSTRAINT notes_pkey PRIMARY KEY (id)
)
WITH (OIDS=FALSE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment