Actualiza formato del código de las migraciones

This commit is contained in:
Manuel Cillero 2022-04-24 21:57:07 +02:00
parent e7f9bf8778
commit f30f84e993
8 changed files with 486 additions and 512 deletions

View file

@ -1,17 +1,19 @@
use pagetop::prelude::*;
#[derive(Iden)]
enum User { Table,
Uid,
Name,
Pass,
Mail,
Created,
Changed,
Access,
Login,
Status,
Timezone,
enum User {
Table, // Stores user data.
Uid, // Primary Key: Unique user ID.
Name, // Unique user name.
Pass, // User's password (hashed).
Mail, // User's e-mail address.
Created, // Timestamp for when user was created.
Changed, // Timestamp for when user was changed.
Access, // Timestamp for previous time user accessed the site.
Login, // Timestamp for user's last login.
Status, // Whether the user is active(1) or blocked(0).
Timezone, // User's time zone.
}
pub struct Migration;
@ -19,74 +21,60 @@ pub struct Migration;
#[async_trait::async_trait]
impl MigrationTrait for Migration {
async fn up(&self, manager: &SchemaManager) -> Result<(), DbErr> {
manager
.create_table(
// Stores user data.
Table::create()
.table(User::Table)
.if_not_exists()
// Primary Key: Unique user ID.
.col(ColumnDef::new(User::Uid)
.unsigned()
.not_null()
.primary_key()
)
// Unique user name.
.col(ColumnDef::new(User::Name)
.string_len(60)
.not_null()
.unique_key()
)
// User's password (hashed).
.col(ColumnDef::new(User::Pass)
.string_len(128)
.not_null()
)
// User's e-mail address.
.col(ColumnDef::new(User::Mail)
.string_len(255)
)
// Timestamp for when user was created.
.col(ColumnDef::new(User::Created)
.timestamp()
.not_null()
)
// Timestamp for when user was changed.
.col(ColumnDef::new(User::Changed)
.timestamp()
.not_null()
)
// Timestamp for previous time user accessed the site.
.col(ColumnDef::new(User::Access)
.timestamp()
.not_null()
)
// Timestamp for user's last login.
.col(ColumnDef::new(User::Login)
.timestamp()
.not_null()
)
// Whether the user is active(1) or blocked(0).
.col(ColumnDef::new(User::Status)
.boolean()
.not_null()
)
// User's time zone.
.col(ColumnDef::new(User::Timezone)
.string_len(32)
)
.to_owned()
manager.create_table(Table::create()
.table(User::Table)
.if_not_exists()
.col(ColumnDef::new(User::Uid)
.unsigned()
.not_null()
.primary_key()
)
.await
.col(ColumnDef::new(User::Name)
.string_len(60)
.not_null()
.unique_key()
)
.col(ColumnDef::new(User::Pass)
.string_len(128)
.not_null()
)
.col(ColumnDef::new(User::Mail)
.string_len(255)
)
.col(ColumnDef::new(User::Created)
.timestamp()
.not_null()
)
.col(ColumnDef::new(User::Changed)
.timestamp()
.not_null()
)
.col(ColumnDef::new(User::Access)
.timestamp()
.not_null()
)
.col(ColumnDef::new(User::Login)
.timestamp()
.not_null()
)
.col(ColumnDef::new(User::Status)
.boolean()
.not_null()
)
.col(ColumnDef::new(User::Timezone)
.string_len(32)
)
.to_owned()
)
.await
}
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
manager
.drop_table(Table::drop()
.table(User::Table)
.to_owned()
)
.await
manager.drop_table(Table::drop()
.table(User::Table)
.to_owned()
)
.await
}
}