Skip to content

Commit

Permalink
fix schema collision (#4580)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcgoodfellow authored Nov 30, 2023
1 parent 3555b5d commit a04f5e3
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nexus/db-model/src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1301,7 +1301,7 @@ table! {
///
/// This should be updated whenever the schema is changed. For more details,
/// refer to: schema/crdb/README.adoc
pub const SCHEMA_VERSION: SemverVersion = SemverVersion::new(16, 0, 0);
pub const SCHEMA_VERSION: SemverVersion = SemverVersion::new(17, 0, 0);

allow_tables_to_appear_in_same_query!(
system_update,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion schema/crdb/dbinit.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3009,7 +3009,7 @@ INSERT INTO omicron.public.db_metadata (
version,
target_version
) VALUES
( TRUE, NOW(), NOW(), '16.0.0', NULL)
( TRUE, NOW(), NOW(), '17.0.0', NULL)
ON CONFLICT DO NOTHING;

COMMIT;

0 comments on commit a04f5e3

Please sign in to comment.