diff --git a/nexus/db-model/src/schema.rs b/nexus/db-model/src/schema.rs index 11cdf87f6c..954647f70d 100644 --- a/nexus/db-model/src/schema.rs +++ b/nexus/db-model/src/schema.rs @@ -13,7 +13,7 @@ use omicron_common::api::external::SemverVersion; /// /// 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(25, 0, 0); +pub const SCHEMA_VERSION: SemverVersion = SemverVersion::new(26, 0, 0); table! { disk (id) { diff --git a/schema/crdb/25.0.0/up01.sql b/schema/crdb/26.0.0/up01.sql similarity index 100% rename from schema/crdb/25.0.0/up01.sql rename to schema/crdb/26.0.0/up01.sql diff --git a/schema/crdb/25.0.0/up02.sql b/schema/crdb/26.0.0/up02.sql similarity index 100% rename from schema/crdb/25.0.0/up02.sql rename to schema/crdb/26.0.0/up02.sql diff --git a/schema/crdb/25.0.0/up03.sql b/schema/crdb/26.0.0/up03.sql similarity index 100% rename from schema/crdb/25.0.0/up03.sql rename to schema/crdb/26.0.0/up03.sql diff --git a/schema/crdb/25.0.0/up04.sql b/schema/crdb/26.0.0/up04.sql similarity index 100% rename from schema/crdb/25.0.0/up04.sql rename to schema/crdb/26.0.0/up04.sql diff --git a/schema/crdb/25.0.0/up05.sql b/schema/crdb/26.0.0/up05.sql similarity index 100% rename from schema/crdb/25.0.0/up05.sql rename to schema/crdb/26.0.0/up05.sql diff --git a/schema/crdb/25.0.0/up06.sql b/schema/crdb/26.0.0/up06.sql similarity index 100% rename from schema/crdb/25.0.0/up06.sql rename to schema/crdb/26.0.0/up06.sql diff --git a/schema/crdb/25.0.0/up07.sql b/schema/crdb/26.0.0/up07.sql similarity index 100% rename from schema/crdb/25.0.0/up07.sql rename to schema/crdb/26.0.0/up07.sql diff --git a/schema/crdb/25.0.0/up08.sql b/schema/crdb/26.0.0/up08.sql similarity index 100% rename from schema/crdb/25.0.0/up08.sql rename to schema/crdb/26.0.0/up08.sql diff --git a/schema/crdb/25.0.0/up09.sql b/schema/crdb/26.0.0/up09.sql similarity index 100% rename from schema/crdb/25.0.0/up09.sql rename to schema/crdb/26.0.0/up09.sql diff --git a/schema/crdb/dbinit.sql b/schema/crdb/dbinit.sql index 86d88f5fe9..79a43d3c89 100644 --- a/schema/crdb/dbinit.sql +++ b/schema/crdb/dbinit.sql @@ -3296,7 +3296,7 @@ INSERT INTO omicron.public.db_metadata ( version, target_version ) VALUES - ( TRUE, NOW(), NOW(), '25.0.0', NULL) + ( TRUE, NOW(), NOW(), '26.0.0', NULL) ON CONFLICT DO NOTHING; COMMIT;