blob: ac36884b8f7cafbf76cabc153322459e529cbaff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
create table channel (
id text
not null
primary key,
name text
unique
not null,
created_sequence bigint
unique
not null,
created_at text
not null
);
create index channel_created_at
on channel (created_at);
|