-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP refactor: update migration setup
- Loading branch information
1 parent
e5cb7dd
commit b3f358d
Showing
7 changed files
with
26 additions
and
38 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
.sqlx/query-115025a2e548046671f2361c47726fda3f0442ff0f76f5cedabc3cdf0855f950.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
.sqlx/query-9e9e3e1758ef7628ab5412b2d186ea706d1c85a952d589b9783407705e5045a2.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
-- Add migration script here | ||
CREATE TABLE IF NOT EXISTS contacts | ||
( | ||
id INTEGER PRIMARY KEY AUTOINCREMENT, | ||
first_name TEXT NOT NULL, | ||
last_name TEXT NOT NULL, | ||
display_name TEXT NOT NULL, | ||
email TEXT NOT NULL, | ||
phone_number TEXT NOT NULL | ||
); |