diff --git a/src/entity/events.rs b/src/entity/events.rs deleted file mode 100644 index e1a92fa..0000000 --- a/src/entity/events.rs +++ /dev/null @@ -1,52 +0,0 @@ -//! SeaORM Entity. Generated by sea-orm-codegen 0.5.0 - -use sea_orm::entity::prelude::*; -use serde::{Deserialize, Serialize}; - -#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Serialize, Deserialize)] -#[sea_orm(table_name = "events")] -pub struct Model { - #[sea_orm(primary_key, auto_increment = false)] - pub id: String, - pub start_date: String, - pub end_date: Option, - pub description: String, - pub series: String, - pub series_name: String, - pub location: Option, - pub location_name: Option, -} - -#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] -pub enum Relation { - #[sea_orm( - belongs_to = "super::series::Entity", - from = "Column::Series", - to = "super::series::Column::Id", - on_update = "NoAction", - on_delete = "Cascade" - )] - Series, - #[sea_orm( - belongs_to = "super::locations::Entity", - from = "Column::Location", - to = "super::locations::Column::Id", - on_update = "NoAction", - on_delete = "Cascade" - )] - Locations, -} - -impl Related for Entity { - fn to() -> RelationDef { - Relation::Series.def() - } -} - -impl Related for Entity { - fn to() -> RelationDef { - Relation::Locations.def() - } -} - -impl ActiveModelBehavior for ActiveModel {} diff --git a/src/entity/locations.rs b/src/entity/locations.rs deleted file mode 100644 index 1988786..0000000 --- a/src/entity/locations.rs +++ /dev/null @@ -1,35 +0,0 @@ -//! SeaORM Entity. Generated by sea-orm-codegen 0.5.0 - -use sea_orm::entity::prelude::*; -use serde::{Deserialize, Serialize}; - -#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Serialize, Deserialize)] -#[sea_orm(table_name = "locations")] -pub struct Model { - #[sea_orm(primary_key, auto_increment = false)] - pub id: String, - pub name: String, - pub description: Option, -} - -#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] -pub enum Relation { - #[sea_orm(has_many = "super::sessions::Entity")] - Sessions, - #[sea_orm(has_many = "super::events::Entity")] - Events, -} - -impl Related for Entity { - fn to() -> RelationDef { - Relation::Sessions.def() - } -} - -impl Related for Entity { - fn to() -> RelationDef { - Relation::Events.def() - } -} - -impl ActiveModelBehavior for ActiveModel {} diff --git a/src/entity/mod.rs b/src/entity/mod.rs deleted file mode 100644 index b5d5ffc..0000000 --- a/src/entity/mod.rs +++ /dev/null @@ -1,8 +0,0 @@ -//! SeaORM Entity. Generated by sea-orm-codegen 0.5.0 - -pub mod prelude; - -pub mod events; -pub mod locations; -pub mod series; -pub mod sessions; diff --git a/src/entity/prelude.rs b/src/entity/prelude.rs deleted file mode 100644 index 85ffee3..0000000 --- a/src/entity/prelude.rs +++ /dev/null @@ -1,6 +0,0 @@ -//! SeaORM Entity. Generated by sea-orm-codegen 0.5.0 - -pub use super::events::Entity as Events; -pub use super::locations::Entity as Locations; -pub use super::series::Entity as Series; -pub use super::sessions::Entity as Sessions; diff --git a/src/entity/series.rs b/src/entity/series.rs deleted file mode 100644 index a763b64..0000000 --- a/src/entity/series.rs +++ /dev/null @@ -1,27 +0,0 @@ -//! SeaORM Entity. Generated by sea-orm-codegen 0.5.0 - -use sea_orm::entity::prelude::*; -use serde::{Deserialize, Serialize}; - -#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Serialize, Deserialize)] -#[sea_orm(table_name = "series")] -pub struct Model { - #[sea_orm(primary_key, auto_increment = false)] - pub id: String, - pub name: String, - pub description: Option, -} - -#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] -pub enum Relation { - #[sea_orm(has_many = "super::events::Entity")] - Events, -} - -impl Related for Entity { - fn to() -> RelationDef { - Relation::Events.def() - } -} - -impl ActiveModelBehavior for ActiveModel {} diff --git a/src/entity/sessions.rs b/src/entity/sessions.rs deleted file mode 100644 index 98d33f8..0000000 --- a/src/entity/sessions.rs +++ /dev/null @@ -1,38 +0,0 @@ -//! SeaORM Entity. Generated by sea-orm-codegen 0.5.0 - -use sea_orm::entity::prelude::*; -use serde::{Deserialize, Serialize}; - -#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Serialize, Deserialize)] -#[sea_orm(table_name = "sessions")] -pub struct Model { - #[sea_orm(primary_key, auto_increment = false)] - pub id: String, - pub name: String, - pub start: i32, - pub duration_minutes: Option, - pub location: Option, - pub location_name: Option, - pub series: String, - pub series_name: String, -} - -#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] -pub enum Relation { - #[sea_orm( - belongs_to = "super::locations::Entity", - from = "Column::Location", - to = "super::locations::Column::Id", - on_update = "NoAction", - on_delete = "Cascade" - )] - Locations, -} - -impl Related for Entity { - fn to() -> RelationDef { - Relation::Locations.def() - } -} - -impl ActiveModelBehavior for ActiveModel {}