feat(gpodder_sqlite): add signup links table
This commit is contained in:
parent
2514aa8413
commit
c48d2a78ca
6 changed files with 35 additions and 1 deletions
|
|
@ -0,0 +1,2 @@
|
|||
-- This file should undo anything in `up.sql`
|
||||
drop table signup_links;
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
-- Your SQL goes here
|
||||
create table signup_links (
|
||||
id bigint primary key not null,
|
||||
created_at bigint not null
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue