10 lines
306 B
SQL
10 lines
306 B
SQL
CREATE TABLE IF NOT EXISTS "subscribers"
|
|
(
|
|
id int GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
topic varchar(255) not null,
|
|
callback varchar(255) not null,
|
|
lease_seconds int not null,
|
|
secret varchar(255) not null,
|
|
created timestamp not null
|
|
);
|