Skip to content

Commit 8c758bb

Browse files
committed
feat(backend,database): add correct column to seen table
1 parent 835fcbe commit 8c758bb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/backend/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ryot"
3-
version = "5.5.2"
3+
version = "5.5.3"
44
edition = "2021"
55
repository = "https://github.com/IgnisDa/ryot"
66
license = "GPL-3.0"

libs/database/src/migrations/m20240607_is_really_last_v5_migration.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ impl MigrationTrait for Migration {
1010
db.execute_unprepared(
1111
r#"
1212
ALTER TABLE "review" ALTER COLUMN "visibility" SET DEFAULT 'private';
13-
ALTER TABLE "seen" ALTER COLUMN "in_progress" SET DEFAULT 'private';
13+
ALTER TABLE "seen" ALTER COLUMN "state" SET DEFAULT 'in_progress';
1414
"#,
1515
)
1616
.await?;

0 commit comments

Comments
 (0)