diff --git a/docs/database_migration.md b/docs/database_migration.md index 04e3e89..32e5638 100644 --- a/docs/database_migration.md +++ b/docs/database_migration.md @@ -83,7 +83,7 @@ or `mysql -u -p < /path/to/dump.sql` -NOTE: MySQL will limit avatar size to 64Kb. You may need to remove avatars for some users. (Untested: you could probably change the column type to LONGBLOB ) +NOTE: MySQL will limit avatar size to 64Kb. You may need to remove avatars for some users. See #486 ## Switch to new database diff --git a/server/src/main.rs b/server/src/main.rs index 784612c..83b85de 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -193,7 +193,7 @@ async fn create_schema(database_url: String) -> Result<()> { let sql_pool = { let mut sql_opt = sea_orm::ConnectOptions::new(database_url.clone()); sql_opt - .max_connections(5) + .max_connections(1) .sqlx_logging(true) .sqlx_logging_level(log::LevelFilter::Debug); Database::connect(sql_opt).await? @@ -217,7 +217,7 @@ fn create_schema_command(opts: RunOpts) -> Result<()> { create_schema(database_url).unwrap_or_else(|e| error!("Could not create schema: {:#}", e)), )?; - info!("End."); + info!("Schema created successfully."); Ok(()) }