Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alaarihan committed Apr 1, 2024
1 parent 251e8d2 commit a0be126
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/migration/src/m20240401_215840_create_tables.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,15 +168,15 @@ impl MigrationTrait for Migration {
)
.await?;

// Drop the old sqlx migration table
// Drop update status trigger
db.execute_unprepared(
r#"
DROP TRIGGER IF EXISTS update_status;
"#,
)
.await?;

// Drop update status trigger
// Drop the old sqlx migration table
db.execute_unprepared(
r#"
DROP TABLE IF EXISTS _sqlx_migrations;
Expand Down

0 comments on commit a0be126

Please sign in to comment.