We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94e81e0 commit f7a6b98Copy full SHA for f7a6b98
src/lib/server/db/migrations/xxx_schema.sql
@@ -54,7 +54,6 @@ create table sessions (
54
55
create index idx___user_id_idx on sessions(user_id);
56
57
--- roles table
58
create table roles (
59
id integer primary key autoincrement,
60
name text not null unique,
@@ -65,7 +64,6 @@ create table roles (
65
64
updated_at text,
66
) strict;
67
68
--- content to users junction table
69
create table content_to_users (
70
content_id text not null,
71
user_id text not null,
@@ -76,7 +74,6 @@ create table content_to_users (
76
74
foreign key (user_id) references users(id) on delete cascade
77
75
78
79
--- tags table
80
create table tags (
81
id text primary key default (lower(hex(randomblob(8)))),
82
name text not null,
0 commit comments