cargo fmt check
This commit is contained in:
parent
6d40569164
commit
27af2c9c05
2
.github/workflows/rust.yml
vendored
2
.github/workflows/rust.yml
vendored
@ -251,7 +251,7 @@ jobs:
|
||||
with:
|
||||
toolchain: stable
|
||||
components: rustfmt
|
||||
- run: cargo fmt --manifest-path ${{ matrix.path }} --all -- --check
|
||||
- run: cargo fmt --manifest-path ${{ matrix.path }} -- --check
|
||||
- run: cargo build --manifest-path ${{ matrix.path }}
|
||||
- run: cargo test --manifest-path ${{ matrix.path }}
|
||||
- if: ${{ contains(matrix.path, 'core/Cargo.toml') }}
|
||||
|
@ -5,7 +5,7 @@ use sea_orm::entity::prelude::*;
|
||||
pub struct Model {
|
||||
#[sea_orm(primary_key)]
|
||||
pub id: i32,
|
||||
pub user_id: Option<i32> ,
|
||||
pub user_id: Option<i32>,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
||||
@ -15,7 +15,7 @@ pub enum Relation {
|
||||
from = "Column::UserId",
|
||||
to = "super::users::Column::Id",
|
||||
on_update = "NoAction",
|
||||
on_delete = "NoAction",
|
||||
on_delete = "NoAction"
|
||||
)]
|
||||
Users,
|
||||
#[sea_orm(has_many = "super::users_saved_bills::Entity")]
|
||||
|
@ -16,7 +16,7 @@ pub enum Relation {
|
||||
from = "Column::BillId",
|
||||
to = "super::bills::Column::Id",
|
||||
on_update = "Cascade",
|
||||
on_delete = "Cascade",
|
||||
on_delete = "Cascade"
|
||||
)]
|
||||
Bills,
|
||||
#[sea_orm(
|
||||
@ -24,7 +24,7 @@ pub enum Relation {
|
||||
from = "Column::UserId",
|
||||
to = "super::users::Column::Id",
|
||||
on_update = "Cascade",
|
||||
on_delete = "Cascade",
|
||||
on_delete = "Cascade"
|
||||
)]
|
||||
Users,
|
||||
}
|
||||
|
@ -17,7 +17,7 @@ pub enum Relation {
|
||||
from = "Column::BillId",
|
||||
to = "super::bills::Column::Id",
|
||||
on_update = "Cascade",
|
||||
on_delete = "Cascade",
|
||||
on_delete = "Cascade"
|
||||
)]
|
||||
Bills,
|
||||
#[sea_orm(
|
||||
@ -25,7 +25,7 @@ pub enum Relation {
|
||||
from = "Column::UserId",
|
||||
to = "super::users::Column::Id",
|
||||
on_update = "Cascade",
|
||||
on_delete = "Cascade",
|
||||
on_delete = "Cascade"
|
||||
)]
|
||||
Users,
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ use sea_orm::entity::prelude::*;
|
||||
pub struct Model {
|
||||
#[sea_orm(primary_key)]
|
||||
pub id: i32,
|
||||
pub user_id: Option<i32> ,
|
||||
pub user_id: Option<i32>,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
||||
@ -15,7 +15,7 @@ pub enum Relation {
|
||||
from = "Column::UserId",
|
||||
to = "super::users::Column::Id",
|
||||
on_update = "NoAction",
|
||||
on_delete = "NoAction",
|
||||
on_delete = "NoAction"
|
||||
)]
|
||||
Users,
|
||||
#[sea_orm(has_many = "super::users_votes::Entity")]
|
||||
|
@ -17,7 +17,7 @@ pub enum Relation {
|
||||
from = "Column::BillId",
|
||||
to = "super::bills::Column::Id",
|
||||
on_update = "Cascade",
|
||||
on_delete = "Cascade",
|
||||
on_delete = "Cascade"
|
||||
)]
|
||||
Bills,
|
||||
#[sea_orm(
|
||||
@ -25,7 +25,7 @@ pub enum Relation {
|
||||
from = "Column::UserId",
|
||||
to = "super::users::Column::Id",
|
||||
on_update = "Cascade",
|
||||
on_delete = "Cascade",
|
||||
on_delete = "Cascade"
|
||||
)]
|
||||
Users,
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ use sea_orm::entity::prelude::*;
|
||||
pub struct Model {
|
||||
#[sea_orm(primary_key)]
|
||||
pub id: i32,
|
||||
pub user_id: Option<i32> ,
|
||||
pub user_id: Option<i32>,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
||||
@ -15,7 +15,7 @@ pub enum Relation {
|
||||
from = "Column::UserId",
|
||||
to = "super::users::Column::Id",
|
||||
on_update = "NoAction",
|
||||
on_delete = "NoAction",
|
||||
on_delete = "NoAction"
|
||||
)]
|
||||
Users,
|
||||
}
|
||||
|
@ -7,8 +7,8 @@ pub struct Model {
|
||||
pub user_id: i32,
|
||||
#[sea_orm(primary_key, auto_increment = false)]
|
||||
pub bill_id: i32,
|
||||
pub user_idd: Option<i32> ,
|
||||
pub bill_idd: Option<i32> ,
|
||||
pub user_idd: Option<i32>,
|
||||
pub bill_idd: Option<i32>,
|
||||
pub vote: bool,
|
||||
}
|
||||
|
||||
@ -17,25 +17,25 @@ pub enum Relation {
|
||||
#[sea_orm(
|
||||
belongs_to = "super::bills::Entity",
|
||||
from = "Column::BillIdd",
|
||||
to = "super::bills::Column::Id",
|
||||
to = "super::bills::Column::Id"
|
||||
)]
|
||||
Bills2,
|
||||
#[sea_orm(
|
||||
belongs_to = "super::bills::Entity",
|
||||
from = "Column::BillId",
|
||||
to = "super::bills::Column::Id",
|
||||
to = "super::bills::Column::Id"
|
||||
)]
|
||||
Bills1,
|
||||
#[sea_orm(
|
||||
belongs_to = "super::users::Entity",
|
||||
from = "Column::UserIdd",
|
||||
to = "super::users::Column::Id",
|
||||
to = "super::users::Column::Id"
|
||||
)]
|
||||
Users2,
|
||||
#[sea_orm(
|
||||
belongs_to = "super::users::Entity",
|
||||
from = "Column::UserId",
|
||||
to = "super::users::Column::Id",
|
||||
to = "super::users::Column::Id"
|
||||
)]
|
||||
Users1,
|
||||
}
|
||||
|
@ -5,16 +5,12 @@ use sea_orm::entity::prelude::*;
|
||||
pub struct Model {
|
||||
#[sea_orm(primary_key)]
|
||||
pub id: i32,
|
||||
pub self_id: Option<i32> ,
|
||||
pub self_id: Option<i32>,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
||||
pub enum Relation {
|
||||
#[sea_orm(
|
||||
belongs_to = "Entity",
|
||||
from = "Column::SelfId",
|
||||
to = "Column::Id",
|
||||
)]
|
||||
#[sea_orm(belongs_to = "Entity", from = "Column::SelfId", to = "Column::Id")]
|
||||
SelfRef,
|
||||
}
|
||||
|
||||
|
@ -5,23 +5,15 @@ use sea_orm::entity::prelude::*;
|
||||
pub struct Model {
|
||||
#[sea_orm(primary_key)]
|
||||
pub id: i32,
|
||||
pub self_id: Option<i32> ,
|
||||
pub self_idd: Option<i32> ,
|
||||
pub self_id: Option<i32>,
|
||||
pub self_idd: Option<i32>,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
||||
pub enum Relation {
|
||||
#[sea_orm(
|
||||
belongs_to = "Entity",
|
||||
from = "Column::SelfId",
|
||||
to = "Column::Id",
|
||||
)]
|
||||
#[sea_orm(belongs_to = "Entity", from = "Column::SelfId", to = "Column::Id")]
|
||||
SelfRef2,
|
||||
#[sea_orm(
|
||||
belongs_to = "Entity",
|
||||
from = "Column::SelfIdd",
|
||||
to = "Column::Id",
|
||||
)]
|
||||
#[sea_orm(belongs_to = "Entity", from = "Column::SelfIdd", to = "Column::Id")]
|
||||
SelfRef1,
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user