Make migrations optional and change the table name to not conflict with other applications
Build and Publish Docker Container / build (push) Successful in 7m33s

This commit is contained in:
2023-09-05 18:29:35 +01:00
parent f7c48b6924
commit 550b4758b2
2 changed files with 10 additions and 1 deletions
+4
View File
@@ -6,6 +6,10 @@ pub struct Migrator;
#[async_trait::async_trait]
impl MigratorTrait for Migrator {
fn migration_table_name() -> sea_orm::DynIden {
Alias::new("monzo_ingestion_seaql_migrations").into_iden()
}
fn migrations() -> Vec<Box<dyn MigrationTrait>> {
vec![Box::new(m20230904_141851_create_monzo_tables::Migration)]
}