feat(gpodder_sqlite): add signup links table

This commit is contained in:
Jef Roosens 2025-07-02 10:23:22 +02:00
parent 2514aa8413
commit c48d2a78ca
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
6 changed files with 35 additions and 1 deletions

View file

@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
drop table signup_links;

View file

@ -0,0 +1,5 @@
-- Your SQL goes here
create table signup_links (
id bigint primary key not null,
created_at bigint not null
);