10 lines
292 B
SQL
10 lines
292 B
SQL
create table "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
|
|
);
|