We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa08bd0 commit f13b5faCopy full SHA for f13b5fa
nmdc_schema/migrators/migrator_from_11_6_0_to_11_6_1.py
@@ -0,0 +1,12 @@
1
+from nmdc_schema.migrators.migrator_base import MigratorBase
2
+
3
4
+class Migrator(MigratorBase):
5
+ r"""Migrates a database between two schemas."""
6
7
+ _from_version = "11.6.0"
8
+ _to_version = "11.6.1"
9
10
+ def upgrade(self) -> None:
11
+ r"""No upgrade needed."""
12
+ pass
nmdc_schema/nmdc.py
@@ -1,5 +1,5 @@
# Auto generated from nmdc.yaml by pythongen.py version: 0.0.1
-# Generation date: 2025-04-17T12:19:44
+# Generation date: 2025-04-17T16:32:29
# Schema: NMDC
#
# id: https://w3id.org/nmdc/nmdc
0 commit comments