You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(This one is up for debate but I think it would be useful especially for testing environments like GH actions)
The "dbdev install" command adds the TLE to the database but doesn't "enable" the extension. It could be useful to have a command like dbdev create pg_idkit --connection " which essentially runs:
CREATE EXTENSION pg_idkit;
Additional context
Add any other context or screenshots that help clarify the task.
The text was updated successfully, but these errors were encountered:
How about controlling this behavior on install with a flag --create-extension on the existing install command
e.g. dbdev install ... --create-extension rather than a separating it?
we might want something for updates too (alter extension ... update to NEW_VERSION);, although I'm not sure how far we need to go down this path - this might also mean that we need something to list the current version
Chore
Describe the chore
(This one is up for debate but I think it would be useful especially for testing environments like GH actions)
The "dbdev install" command adds the TLE to the database but doesn't "enable" the extension. It could be useful to have a command like dbdev create pg_idkit --connection " which essentially runs:
CREATE EXTENSION pg_idkit;
Additional context
Add any other context or screenshots that help clarify the task.
The text was updated successfully, but these errors were encountered: