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 ebef5fc commit 9e9cc29Copy full SHA for 9e9cc29
migrations/20241112190527_add_22074_gd.up.sql
@@ -0,0 +1,3 @@
1
+-- Add up migration script here
2
+
3
+alter type gd_version add value '2.2074';
src/types/models/mod_gd_version.rs
@@ -41,6 +41,9 @@ pub enum GDVersionEnum {
41
#[serde(rename = "2.2073")]
42
#[sqlx(rename = "2.2073")]
43
GD22073,
44
+ #[serde(rename = "2.2074")]
45
+ #[sqlx(rename = "2.2074")]
46
+ GD22074,
47
}
48
49
impl FromStr for GDVersionEnum {
@@ -57,6 +60,7 @@ impl FromStr for GDVersionEnum {
57
60
"2.2071" => Ok(GDVersionEnum::GD22071),
58
61
"2.2072" => Ok(GDVersionEnum::GD22072),
59
62
"2.2073" => Ok(GDVersionEnum::GD22073),
63
+ "2.2074" => Ok(GDVersionEnum::GD22074),
64
_ => Err(()),
65
66
0 commit comments