founders card

This commit is contained in:
2026-09-14 13:23:14 +00:00
parent c5084170b8
commit 64759ce17d
57 changed files with 5013 additions and 188 deletions
+13
View File
@@ -0,0 +1,13 @@
create table public.early_player_emails (
id bigint generated by default as identity not null,
created_at timestamp with time zone not null default now(),
email text not null,
preset text not null default 'founder-card-5',
constraint early_player_emails_pkey primary key (id),
constraint early_player_emails_email_key unique (email),
constraint early_player_emails_email_len check (char_length(email) between 3 and 254),
constraint early_player_emails_preset_len check (char_length(preset) between 1 and 80)
);
-- Row `id` is the founder card number stamped onto the PNG.
-- Access is service-role only (RLS on, no policies; anon/authenticated revoked).