Skip to content

Commit 68c9ae6

Browse files
committed
add support for gd 2.206
1 parent 14bf795 commit 68c9ae6

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-- Add up migration script here
2+
3+
alter type gd_version add value '2.206';

src/types/models/mod_gd_version.rs

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ impl FromStr for GDVersionEnum {
4040
"2.200" => Ok(GDVersionEnum::GD2200),
4141
"2.204" => Ok(GDVersionEnum::GD2204),
4242
"2.205" => Ok(GDVersionEnum::GD2205),
43+
"2.205" => Ok(GDVersionEnum::GD2206),
4344
_ => Err(()),
4445
}
4546
}

0 commit comments

Comments
 (0)