Create database if it doesn't exist #13
Labels
No labels
bug
chore
CI/CD
Code Cleanup
duplicate
DX
enhancement
help wanted
invalid
packaging
question
UI
UX
wontfix
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
waycasthq/waycast#13
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The database setup for waycast currently only exists in dev. We touch the file and run migrations with the sqlx CLI. Realistically, we should create the file and directory needed if it doesn't exist, and run migrations when waycast starts.
Figure out the right way to do this with SQLX.
The
migrate!macro will probably be it, but we should figure out the right way to embed the migrations into the binary.