From 705f7db13e84a693203e9a162c0ec3b6566628c4 Mon Sep 17 00:00:00 2001 From: autocommit Date: Fri, 15 May 2026 22:59:30 -0700 Subject: [PATCH] =?UTF-8?q?db(migrations):=20=F0=9F=97=83=EF=B8=8F=20Add?= =?UTF-8?q?=20SQL=20seed=20file=20for=20Maison=20Cocotte=20domain=20infras?= =?UTF-8?q?tructure=20with=20hostnames?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- infrastructure/seed-cross-domain.sql | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/infrastructure/seed-cross-domain.sql b/infrastructure/seed-cross-domain.sql index 197dada..4e46891 100644 --- a/infrastructure/seed-cross-domain.sql +++ b/infrastructure/seed-cross-domain.sql @@ -10,7 +10,8 @@ INSERT INTO corps (slug, legal_name) VALUES ('lilith-apps-ehf', 'Lilith Apps ehf'), ('att', 'Adult Therapy Tour'), ('sansonnet', 'Maison Sansonnet'), - ('transquinnftw', 'transquinnftw') + ('transquinnftw', 'transquinnftw'), + ('cocotte', 'Maison Cocotte') ON CONFLICT (slug) DO NOTHING; INSERT INTO domains (corp_id, hostname, role) VALUES @@ -24,5 +25,7 @@ INSERT INTO domains (corp_id, hostname, role) VALUES ((SELECT id FROM corps WHERE slug='transquinnftw'), 'transquinnftw.com', 'canonical'), ((SELECT id FROM corps WHERE slug='transquinnftw'), 'tqftw.com', 'alias'), ((SELECT id FROM corps WHERE slug='lilith-apps-ehf'), 'atlilith.com', 'canonical'), - ((SELECT id FROM corps WHERE slug='lilith-apps-ehf'), 'trustedmeet.com', 'canonical') + ((SELECT id FROM corps WHERE slug='lilith-apps-ehf'), 'trustedmeet.com', 'canonical'), + ((SELECT id FROM corps WHERE slug='cocotte'), 'cocotte.maison', 'canonical'), + ((SELECT id FROM corps WHERE slug='cocotte'), 'data.cocotte.maison', 'canonical') ON CONFLICT (hostname) DO NOTHING;