forked from alemi/upub
feat: added relation table
This commit is contained in:
parent
4c53773853
commit
8cb8632521
5 changed files with 65 additions and 3 deletions
|
@ -7,9 +7,8 @@ pub mod jsonld;
|
|||
pub use jsonld::JsonLD;
|
||||
|
||||
use axum::{extract::State, http::StatusCode, Json};
|
||||
use sea_orm::{EntityTrait, IntoActiveModel};
|
||||
|
||||
use crate::{activitystream::{object::{activity::{Activity, ActivityType}, actor::{ActorMut, ActorType}, ObjectMut, ObjectType}, Base, BaseMut, BaseType, Node}, model, server::Context, url};
|
||||
use crate::{activitystream::{object::{actor::{ActorMut, ActorType}, ObjectMut}, BaseMut}, server::Context, url};
|
||||
|
||||
use self::jsonld::LD;
|
||||
|
||||
|
|
44
src/migrations/m20240322_000001_create_relations.rs
Normal file
44
src/migrations/m20240322_000001_create_relations.rs
Normal file
|
@ -0,0 +1,44 @@
|
|||
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(Relations::Table)
|
||||
.if_not_exists()
|
||||
.col(
|
||||
ColumnDef::new(Relations::Id)
|
||||
.integer()
|
||||
.not_null()
|
||||
.primary_key()
|
||||
)
|
||||
.col(ColumnDef::new(Relations::Follower).string().not_null())
|
||||
.col(ColumnDef::new(Relations::Following).string().not_null())
|
||||
.to_owned()
|
||||
)
|
||||
.await?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
|
||||
manager
|
||||
.drop_table(Table::drop().table(Relations::Table).to_owned())
|
||||
.await?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(DeriveIden)]
|
||||
enum Relations {
|
||||
Table,
|
||||
Id,
|
||||
Follower,
|
||||
Following,
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
use sea_orm_migration::prelude::*;
|
||||
|
||||
mod m20240316_000001_create_table;
|
||||
mod m20240322_000001_create_relations;
|
||||
|
||||
pub struct Migrator;
|
||||
|
||||
|
@ -8,7 +9,8 @@ pub struct Migrator;
|
|||
impl MigratorTrait for Migrator {
|
||||
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
|
||||
vec![
|
||||
Box::new(m20240316_000001_create_table::Migration)
|
||||
Box::new(m20240316_000001_create_table::Migration),
|
||||
Box::new(m20240322_000001_create_relations::Migration),
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
pub mod user;
|
||||
pub mod object;
|
||||
pub mod activity;
|
||||
pub mod relation;
|
||||
|
||||
pub mod faker;
|
||||
|
||||
#[derive(Debug, Clone, thiserror::Error)]
|
||||
|
|
15
src/model/relation.rs
Normal file
15
src/model/relation.rs
Normal file
|
@ -0,0 +1,15 @@
|
|||
use sea_orm::entity::prelude::*;
|
||||
|
||||
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)]
|
||||
#[sea_orm(table_name = "relations")]
|
||||
pub struct Model {
|
||||
#[sea_orm(primary_key)]
|
||||
pub id: i64,
|
||||
pub follower: String,
|
||||
pub following: String,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
||||
pub enum Relation {}
|
||||
|
||||
impl ActiveModelBehavior for ActiveModel {}
|
Loading…
Reference in a new issue