initial commit
This commit is contained in:
37
database/scripts/seed_profile_roles_mock_data.sql
Normal file
37
database/scripts/seed_profile_roles_mock_data.sql
Normal file
@@ -0,0 +1,37 @@
|
||||
-- Seed profile_roles with mockRoleData (from internal/repository/postgres/profile/role_mock.go)
|
||||
-- Run: psql postgres://alinmeuser:password@localhost:5430/alinmedb -f database/scripts/seed_profile_roles_mock_data.sql
|
||||
-- First 7: featured, rest: active (matches 20260226000001_specialist_roles_seed.sql)
|
||||
INSERT INTO "public"."profile_roles" ("id", "title", "status") VALUES
|
||||
('0199b964-5dc0-7657-9178-2a844e23e5b5', 'Data Scientist', 'featured'),
|
||||
('0199b964-5dc0-7a1a-94c7-d68daf420e50', 'Machine Learning Engineer', 'featured'),
|
||||
('0199b964-5dc0-7759-8221-71f57f5b2b57', 'AI Engineer', 'featured'),
|
||||
('0199b964-5dc0-7b79-a268-331f39c35366', 'Data Engineer', 'featured'),
|
||||
('0199b964-5dc0-7062-b219-11733a1ab94b', 'Data Analyst', 'featured'),
|
||||
('0199b964-5dc0-7434-b105-f2ff49573fe2', 'Business Intelligence Developer', 'featured'),
|
||||
('0199b964-5dc0-77f8-be02-f76937f60ba6', 'MLOps Engineer', 'featured'),
|
||||
('0199b964-5dc0-7107-907c-6c013cbc08b9', 'AI Product Manager', 'active'),
|
||||
('0199b964-5dc0-72f9-8e0f-dfa2950a8182', 'AI Research Scientist', 'active'),
|
||||
('0199b964-5dc0-7177-829b-f3d05081201e', 'Computer Vision Engineer', 'active'),
|
||||
('0199b964-5dc0-74b7-b427-a500ddb9f435', 'NLP Engineer', 'active'),
|
||||
('0199b964-5dc0-780d-876f-a7b4d15b0ef5', 'Data Architect', 'active'),
|
||||
('0199b964-5dc0-7d3f-af44-19dc33f50b21', 'Big Data Engineer', 'active'),
|
||||
('0199b964-5dc0-7600-9a16-74f17be7ce4b', 'Cloud AI/ML Specialist', 'active'),
|
||||
('0199b964-5dc0-73c2-b9a0-78347ae945d7', 'Generative AI Specialist', 'active'),
|
||||
('0199b964-5dc0-70a8-b710-1f424a776083', 'AI Ethics Officer', 'active'),
|
||||
('0199b964-5dc0-7c87-91c0-348e6f8b43d6', 'AI Governance Manager', 'active'),
|
||||
('0199b964-5dc0-7441-b306-bc2e3d4e4152', 'Data Privacy Engineer', 'active'),
|
||||
('0199b964-5dc0-747f-97b4-c4d98a257dee', 'AI Solutions Architect', 'active'),
|
||||
('0199b964-5dc0-7fa5-8fe0-9eb7831554ed', 'Chief Data & AI Officer', 'active'),
|
||||
('0199b964-5dc0-7447-8785-f246ff9ec309', 'AI Developer Advocate', 'active'),
|
||||
('0199b964-5dc0-7b24-9b1b-c7ca8f08527f', 'AI/ML Educator & Trainer', 'active'),
|
||||
('0199b964-5dc0-756f-ab44-48169ecfbb5e', 'Technical Content Creator (AI/ML)', 'active'),
|
||||
('0199b964-5dc0-79d1-9086-c809d8989cac', 'Open Source AI Contributor', 'active'),
|
||||
('0199b964-5dc0-774e-9011-b9fe6c29f52f', 'AI Course Instructor (Udemy, Coursera, etc.)', 'active'),
|
||||
('0199b964-5dc0-7f1d-80a4-96810af9f9ac', 'AI Community Manager', 'active'),
|
||||
('0199b964-5dc0-7352-8553-edd37324ffd9', 'AI Evangelist', 'active'),
|
||||
('0199b964-5dc0-7864-a2b5-473cfd8f7aa0', 'Research Engineer (applied AI research, publishing GitHub repos)', 'active'),
|
||||
('0199b964-5dc0-762e-9a40-0cc112578498', 'Kaggle Competitor / Data Science Challenger', 'active'),
|
||||
('0199b964-5dc0-7e13-a1f4-b4ae76bb0b62', 'AI Startup Founder / Indie Hacker (building projects, sharing repos)', 'active'),
|
||||
('0199b964-5dc0-7035-bf9b-deb415d852fd', 'Freelancer', 'active'),
|
||||
('0199b964-5dc0-7702-b533-72f7c93e19d3', 'Other', 'active')
|
||||
ON CONFLICT (id) DO NOTHING;
|
||||
Reference in New Issue
Block a user