Skip to content

Commit 653793a

Browse files
committed
Fix migration.
1 parent 91b8b78 commit 653793a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/core/src/view_admin.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ CREATE TABLE IF NOT EXISTS ps_migration(id INTEGER PRIMARY KEY, down_migrations
131131
return Err(SQLiteError::from(ResultCode::ABORT));
132132
}
133133

134-
const CODE_VERSION: i32 = 4;
134+
const CODE_VERSION: i32 = 5;
135135

136136
let mut current_version = current_version_stmt.column_int(0)?;
137137

@@ -269,7 +269,7 @@ INSERT INTO ps_migration(id, down_migrations)
269269
").into_db_result(local_db)?;
270270
}
271271

272-
if current_version < 4 {
272+
if current_version < 5 {
273273
// language=SQLite
274274
local_db
275275
.exec_safe(

0 commit comments

Comments
 (0)