forked from Ruderverein-Donau-Linz/rowt
initial push
This commit is contained in:
12
migration/src/lib.rs
Normal file
12
migration/src/lib.rs
Normal file
@ -0,0 +1,12 @@
|
||||
pub use sea_orm_migration::prelude::*;
|
||||
|
||||
mod m20230208_114547_create_day;
|
||||
|
||||
pub struct Migrator;
|
||||
|
||||
#[async_trait::async_trait]
|
||||
impl MigratorTrait for Migrator {
|
||||
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
||||
vec![Box::new(m20230208_114547_create_day::Migration)]
|
||||
}
|
||||
}
|
47
migration/src/m20230208_114547_create_day.rs
Normal file
47
migration/src/m20230208_114547_create_day.rs
Normal file
@ -0,0 +1,47 @@
|
||||
use sea_orm_migration::prelude::*;
|
||||
|
||||
#[derive(DeriveMigrationName)]
|
||||
pub struct Migration;
|
||||
|
||||
#[async_trait::async_trait]
|
||||
impl MigrationTrait for Migration {
|
||||
async fn up(&self, manager: &SchemaManager) -> Result<(), DbErr> {
|
||||
manager
|
||||
.create_table(
|
||||
Table::create()
|
||||
.table(Day::Table)
|
||||
.if_not_exists()
|
||||
.col(ColumnDef::new(Day::Day).date().not_null().primary_key())
|
||||
.col(ColumnDef::new(Day::PlannedAmountCox).integer().default(0))
|
||||
.col(
|
||||
ColumnDef::new(Day::PlannedStartingTime)
|
||||
.string()
|
||||
.default(""),
|
||||
)
|
||||
.col(
|
||||
ColumnDef::new(Day::OpenRegistration)
|
||||
.boolean()
|
||||
.not_null()
|
||||
.default(true),
|
||||
)
|
||||
.to_owned(),
|
||||
)
|
||||
.await
|
||||
}
|
||||
|
||||
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
|
||||
manager
|
||||
.drop_table(Table::drop().table(Day::Table).to_owned())
|
||||
.await
|
||||
}
|
||||
}
|
||||
|
||||
/// Learn more at https://docs.rs/sea-query#iden
|
||||
#[derive(Iden)]
|
||||
enum Day {
|
||||
Table,
|
||||
Day,
|
||||
PlannedAmountCox,
|
||||
PlannedStartingTime,
|
||||
OpenRegistration,
|
||||
}
|
6
migration/src/main.rs
Normal file
6
migration/src/main.rs
Normal file
@ -0,0 +1,6 @@
|
||||
use sea_orm_migration::prelude::*;
|
||||
|
||||
#[async_std::main]
|
||||
async fn main() {
|
||||
cli::run_cli(migration::Migrator).await;
|
||||
}
|
Reference in New Issue
Block a user