diff --git a/sql-files/README.md b/sql-files/README.md index ad61e28179..5b36f09717 100644 --- a/sql-files/README.md +++ b/sql-files/README.md @@ -6,19 +6,19 @@ The files in this directory are basic SQL table building scripts. The contained ### New Install --- -For a new install, the following needs to be imported into the 'ragnarok' schema: +For a new install, the following needs to be imported into the main schema: Note: The schema name is defined in `conf/inter_athena.conf::map_server_db`. * main.sql - Contains tables for normal server usage. * web.sql - Contains tables for the web service * roulette_default_data.sql - Contains data for the client's roulette game. -For a new install, the following needs to be imported into the 'log' schema: +For a new install, the following can be imported into the main schema but is highly suggested to be imported into a separate schema for logs: Note: The schema name is defined in `conf/inter_athena.conf::log_db_db`. * logs.sql - Contains tables for logging of server events. -If your server is setup to read SQL database data, import the following: +If your server is setup to read SQL database data, import the following into the main schema: Note: If `conf/inter_athena.conf::use_sql_db` is set to yes continue with these imports else these can be skipped. Not all files have to be imported, only the ones that apply to the same mode as the server being ran. * item_cash_db.sql - Used for client's cash shop. @@ -44,8 +44,8 @@ Note: If `conf/inter_athena.conf::use_sql_db` is set to yes continue with these ### Updates --- -Over the course of time new features and optimizations will take place. This may require SQL changes to happen. In the `upgrades` folder will be upgrade files with an attached date. -These imports only have to executed if an update has occurred after the initial installation. Many times a SQL error will be displayed on the server console stating the format differs from what is required. +Over the course of time new features and optimizations will take place. This may require SQL changes to happen. In the `upgrades` folder will be SQL files with an attached date. +These only have to executed one time if an update has occurred after the initial installation. It's possible to see when an update may be required when a SQL error will be displayed on the server console stating the format differs from what is required. ### Compatibility --- @@ -76,4 +76,4 @@ To run these queries the user requires the [FILE](https://dev.mysql.com/doc/refm ### Notes --- -The web-server must be able to read the `login` and `guild` tables from the `login-server` and `char-server`, respectively. \ No newline at end of file +The `web-server` must be able to read the `login` and `guild` tables from the `login-server` and `char-server`, respectively.