first commit

This commit is contained in:
gustavooth
2026-07-26 21:17:57 -03:00
commit 9de08ceef7
133 changed files with 38427 additions and 0 deletions
@@ -0,0 +1,12 @@
BEGIN;
ALTER TABLE interviewee_candidates ADD COLUMN IF NOT EXISTS profession text;
ALTER TABLE interviewee_candidates ADD COLUMN IF NOT EXISTS creator_content_type text;
ALTER TABLE interviewee_candidates ADD COLUMN IF NOT EXISTS creator_audience text;
ALTER TABLE interviewee_candidates ADD COLUMN IF NOT EXISTS personal_summary text;
INSERT INTO schema_migrations(version)
VALUES ('0005_add_interviewee_candidate_profile_fields')
ON CONFLICT (version) DO NOTHING;
COMMIT;