Skip to content

Commit

Permalink
finalize
Browse files Browse the repository at this point in the history
  • Loading branch information
LimpidCrypto committed Feb 28, 2024
1 parent ba115e6 commit 79ab208
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 90 deletions.
6 changes: 3 additions & 3 deletions .devcontainer/.env
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
POSTGRES_DB=lc_api
POSTGRES_DB=lc_saas
POSTGRES_USER=limpid
POSTGRES_PASSWORD=limpid
DATABASE_URL=postgres://limpid:limpid@db:5432/lc_api
DATABASE_URL=postgres://limpid:limpid@db:5432/lc_saas
REDIS_URL=redis://redis:6379
MAILER_HOST=mailer
USER_DATABASE_URL=postgres://limpid:limpid@491994aaca7e:5432/lc_user
USER_DATABASE_URL=
8 changes: 1 addition & 7 deletions migration/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,11 @@
#![allow(clippy::wildcard_imports)]
pub use sea_orm_migration::prelude::*;

mod m20220101_000001_users;
mod m20231103_114510_notes;

pub struct Migrator;

#[async_trait::async_trait]
impl MigratorTrait for Migrator {
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
vec![
Box::new(m20220101_000001_users::Migration),
Box::new(m20231103_114510_notes::Migration),
]
vec![]
}
}
47 changes: 0 additions & 47 deletions migration/src/m20220101_000001_users.rs

This file was deleted.

33 changes: 0 additions & 33 deletions migration/src/m20231103_114510_notes.rs

This file was deleted.

0 comments on commit 79ab208

Please sign in to comment.