Skip to content

Commit

Permalink
fix(migrations): revert changes of existing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
dsonck92 committed Sep 5, 2024
1 parent 4193d09 commit 136f2c3
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions migrations/src/m20240718_000001_create_user.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,18 +83,6 @@ impl MigrationTrait for Migration {
.not_null()
.default(false),
)
.col(
ColumnDef::new(User::IsAdmin)
.boolean()
.not_null()
.default(false),
)
.col(
ColumnDef::new(User::IsActive)
.boolean()
.not_null()
.default(true),
)
.col(ColumnDef::new(User::Picture).text())
.col(
ColumnDef::new(User::CreateTime)
Expand Down

0 comments on commit 136f2c3

Please sign in to comment.