Skip to content

Conversation

@Anmol1696
Copy link
Contributor

No description provided.

@Anmol1696
Copy link
Contributor Author

NOTES:

  • change all launchql names to constructive, including the DB-name and more.
  • run bootstrap command for test user,
  • need to run some manual migrations like:
 BEGIN;
   UPDATE services_public.domains SET domain = 'localhost';
   UPDATE services_public.apis SET dbname = 'constructive';
 COMMIT;

------ Some more
ALTER TABLE metaschema_public.database
ADD CONSTRAINT database_owner_id_fkey
FOREIGN KEY (owner_id)
REFERENCES constructive_public.users(id)
ON DELETE RESTRICT
ON UPDATE CASCADE;

NOTE: please make similar changes to the devnet as well please

Comment on lines +307 to +329


## NOTES:
- change all launchql names to constructive, including the DB-name and more.
- run bootstrap command for test user,
- need to run some manual migrations like:
```sql
BEGIN;
UPDATE services_public.domains SET domain = 'localhost';
UPDATE services_public.apis SET dbname = 'constructive';
COMMIT;

------ Some more
ALTER TABLE metaschema_public.database
ADD CONSTRAINT database_owner_id_fkey
FOREIGN KEY (owner_id)
REFERENCES constructive_public.users(id)
ON DELETE RESTRICT
ON UPDATE CASCADE;
```

> NOTE: please make similar changes to the devnet as well please
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot we can remove this from here and maybe we just make it part of the PR itself, which i did, you can just remove it from here.

Copy link
Contributor

Copilot AI commented Jan 9, 2026

@Anmol1696 I've opened a new pull request, #598, to work on those changes. Once the pull request is ready, I'll request review from you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants