From 136f2c354475ad0e1ec89a47fcc29cb17f4bddfa Mon Sep 17 00:00:00 2001 From: Daniel Sonck Date: Thu, 5 Sep 2024 12:31:15 +0200 Subject: [PATCH] fix(migrations): revert changes of existing migrations --- migrations/src/m20240718_000001_create_user.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/migrations/src/m20240718_000001_create_user.rs b/migrations/src/m20240718_000001_create_user.rs index a196bc503..d77c02896 100644 --- a/migrations/src/m20240718_000001_create_user.rs +++ b/migrations/src/m20240718_000001_create_user.rs @@ -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)