-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(migrations): add user IsActive and IsAdmin fields
- Loading branch information
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
60 changes: 60 additions & 0 deletions
60
migrations/src/m20240905_000001_add_user_active_admin_fields.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// Copyright 2023 Daniël Sonck. | ||
// | ||
// Use of this software is governed by the Business Source License | ||
// included in the file licenses/BSL.txt. | ||
// | ||
// As of the Change Date specified in that file, in accordance with | ||
// the Business Source License, use of this software will be governed | ||
// by the GNU Affero General Public License v3.0 only, included in the file | ||
// licenses/AGPL.txt. | ||
use sea_orm_migration::prelude::*; | ||
|
||
use crate::models::v1::User; | ||
|
||
#[derive(DeriveEntityModel)] | ||
pub struct Migration; | ||
|
||
#[async_trait::async_trait] | ||
impl MigrationTrait for Migration { | ||
async fn up( | ||
&self, | ||
manager: &SchemaManager, | ||
) -> Result<(), DbErr> { | ||
manager | ||
.alter_table( | ||
Table::alter() | ||
.table(User::Table) | ||
.add_column( | ||
ColumnDef::new(User::IsAdmin) | ||
.boolean() | ||
.not_null() | ||
.default(false), | ||
) | ||
.add_column( | ||
ColumnDef::new(User::IsActive) | ||
.boolean() | ||
.not_null() | ||
.default(true), | ||
) | ||
.to_owned(), | ||
) | ||
.await?; | ||
|
||
Ok(()) | ||
} | ||
|
||
async fn down( | ||
&self, | ||
manager: &SchemaManager, | ||
) -> Result<(), DbErr> { | ||
manager | ||
.alter_table( | ||
Table::alter() | ||
.table(User::Table) | ||
.drop_column(User::IsActive) | ||
.drop_column(User::IsAdmin) | ||
.to_owned(), | ||
) | ||
.await?; | ||
} | ||
} |