Added tags table
This commit is contained in:
parent
b80a060faf
commit
8284438576
3 changed files with 18 additions and 1 deletions
|
|
@ -4,5 +4,6 @@ drop trigger update_enforce_version_titles on versions;
|
|||
drop function enforce_version_titles;
|
||||
|
||||
drop table versions cascade;
|
||||
drop table tags cascade;
|
||||
drop table posts cascade;
|
||||
drop table sections cascade;
|
||||
|
|
|
|||
|
|
@ -46,7 +46,14 @@ create table versions (
|
|||
|
||||
-- This check allows draft posts to be created without having to enter a
|
||||
-- publish date, but forces them to have one if they're not a draft.
|
||||
CHECK (is_draft OR publish_date IS NOT NULL)
|
||||
CONSTRAINT no_null_published_date CHECK (is_draft OR publish_date IS NOT NULL)
|
||||
);
|
||||
|
||||
create table tags (
|
||||
post_id uuid NOT NULL REFERENCES posts(id) ON DELETE CASCADE,
|
||||
value varchar(64) NOT NULL,
|
||||
|
||||
PRIMARY KEY (post_id, value)
|
||||
);
|
||||
|
||||
create function enforce_version_titles() returns trigger as $$
|
||||
|
|
|
|||
Reference in a new issue