Skip to content

Commit f7a6b98

Browse files
wip
1 parent 94e81e0 commit f7a6b98

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/lib/server/db/migrations/xxx_schema.sql

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ create table sessions (
5454

5555
create index idx___user_id_idx on sessions(user_id);
5656

57-
-- roles table
5857
create table roles (
5958
id integer primary key autoincrement,
6059
name text not null unique,
@@ -65,7 +64,6 @@ create table roles (
6564
updated_at text,
6665
) strict;
6766

68-
-- content to users junction table
6967
create table content_to_users (
7068
content_id text not null,
7169
user_id text not null,
@@ -76,7 +74,6 @@ create table content_to_users (
7674
foreign key (user_id) references users(id) on delete cascade
7775
) strict;
7876

79-
-- tags table
8077
create table tags (
8178
id text primary key default (lower(hex(randomblob(8)))),
8279
name text not null,

0 commit comments

Comments
 (0)