forked from wallabag/wallabag
[add] tags and tags_entries for mysql & postgresql
This commit is contained in:
@ -27,4 +27,15 @@ CREATE TABLE users_config (
|
||||
user_id integer NOT NULL,
|
||||
name varchar(255) NOT NULL,
|
||||
value varchar(255) NOT NULL
|
||||
);
|
||||
);
|
||||
|
||||
CREATE TABLE tags (
|
||||
id bigserial primary key,
|
||||
value varchar(255) NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE tags_entries (
|
||||
id bigserial primary key,
|
||||
entry_id integer NOT NULL,
|
||||
tag_id integer NOT NULL
|
||||
)
|
||||
Reference in New Issue
Block a user