code: database list, get, create, and fixed migration

This commit is contained in:
2024-02-16 21:40:27 +01:00
parent 8d07fafabd
commit 1dc24bf244
9 changed files with 96 additions and 34 deletions

View File

@@ -9,17 +9,17 @@ impl MigrationTrait for Migration {
manager
.create_table(
Table::create()
.table(User::Table)
.table(Users::Table)
.if_not_exists()
.col(
ColumnDef::new(User::Id)
ColumnDef::new(Users::Id)
.integer()
.not_null()
.auto_increment()
.primary_key(),
)
.col(ColumnDef::new(User::Username).string().not_null())
.col(ColumnDef::new(User::Description).string().not_null())
.col(ColumnDef::new(Users::Username).string().not_null())
.col(ColumnDef::new(Users::Description).text())
.to_owned(),
)
.await
@@ -27,13 +27,13 @@ impl MigrationTrait for Migration {
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
manager
.drop_table(Table::drop().table(User::Table).to_owned())
.drop_table(Table::drop().table(Users::Table).to_owned())
.await
}
}
#[derive(DeriveIden)]
enum User {
enum Users {
Table,
Id,
Username,