Skip to content

Commit

Permalink
Bump schema version
Browse files Browse the repository at this point in the history
  • Loading branch information
zephraph committed Dec 8, 2023
1 parent 43beca8 commit 2c11210
Show file tree
Hide file tree
Showing 2 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 @@ -1333,7 +1333,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(19, 0, 0);
pub const SCHEMA_VERSION: SemverVersion = SemverVersion::new(20, 0, 0);

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

COMMIT;

0 comments on commit 2c11210

Please sign in to comment.