review feedback

This commit is contained in:
Austin 2023-03-20 20:46:04 +00:00
parent e5bf0cecdd
commit d1c8945b6e
2 changed files with 3 additions and 3 deletions

View File

@ -83,7 +83,7 @@ or
`mysql -u <username> -p <database> < /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

View File

@ -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(())
}