diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-09-08 17:05:59 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-09-08 17:05:59 -0700 |
| commit | 62ba7cb1a7023e97cef418eeec6e5c610e244b91 (patch) | |
| tree | 74d8544b431d8b5a53208aa77988a6def6893255 /schema.sql | |
| parent | 74e0f33bd5ff740c51a3c46d607c4aa2856528a6 (diff) | |
add independents to captcha pool
Diffstat (limited to 'schema.sql')
| -rw-r--r-- | schema.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/schema.sql b/schema.sql new file mode 100644 index 0000000..04f46d6 --- /dev/null +++ b/schema.sql @@ -0,0 +1,15 @@ +CREATE TABLE vtuber_data +( + id serial PRIMARY KEY, + name text, + affiliation text, + image_url text +); + + +CREATE TABLE sessions +( + session_id varchar(255) PRIMARY KEY, + answer varchar(255), + created_at timestamp, +); |
