-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
Co-authored-by: Oliver Browne <[email protected]>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[env] | ||
# Force SQLX to run in offline mode for CI. Devs can change this if they want, to live code against the DB, | ||
# but we use it at the workspace level here to allow use of sqlx macros across all crates | ||
SQLX_OFFLINE = "true" | ||
SQLX_OFFLINE = "true" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
DATABASE_URL=postgres://posthog:posthog@localhost:15432/test_database | ||
DATABASE_URL=postgres://posthog:posthog@localhost:15432/test_database |
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
ALTER TABLE cyclotron_jobs | ||
ALTER COLUMN vm_state TYPE bytea USING vm_state::bytea, | ||
ALTER COLUMN metadata TYPE bytea USING metadata::bytea, | ||
ALTER COLUMN parameters TYPE bytea USING parameters::bytea, | ||
ADD COLUMN blob bytea; |