summaryrefslogtreecommitdiff
path: root/sql-files
diff options
context:
space:
mode:
Diffstat (limited to 'sql-files')
-rw-r--r--sql-files/convert_engine_innodb.sql2
-rw-r--r--sql-files/convert_engine_myisam.sql2
-rw-r--r--sql-files/upgrade_svn12975_view.sql2
3 files changed, 3 insertions, 3 deletions
diff --git a/sql-files/convert_engine_innodb.sql b/sql-files/convert_engine_innodb.sql
index 9588a9536..fcb240bb1 100644
--- a/sql-files/convert_engine_innodb.sql
+++ b/sql-files/convert_engine_innodb.sql
@@ -1,5 +1,5 @@
--
--- eAthena Database Converter ( MyISAM -> InnoDB )
+-- rAthena Database Converter ( MyISAM -> InnoDB )
--
ALTER TABLE `auction` ENGINE = InnoDB;
diff --git a/sql-files/convert_engine_myisam.sql b/sql-files/convert_engine_myisam.sql
index 5ae7fb2cb..5af878f65 100644
--- a/sql-files/convert_engine_myisam.sql
+++ b/sql-files/convert_engine_myisam.sql
@@ -1,5 +1,5 @@
--
--- eAthena Database Converter ( InnoDB -> MyISAM )
+-- rAthena Database Converter ( InnoDB -> MyISAM )
--
ALTER TABLE `auction` ENGINE = MyISAM;
diff --git a/sql-files/upgrade_svn12975_view.sql b/sql-files/upgrade_svn12975_view.sql
index 2d65afd18..7f0cce743 100644
--- a/sql-files/upgrade_svn12975_view.sql
+++ b/sql-files/upgrade_svn12975_view.sql
@@ -1,6 +1,6 @@
-- The statements below will create a 'view' (virtual table) that mimics
-- the previous `login` table layout. You can use this hack to make your db
--- compatible with older eathena servers or control panels.
+-- compatible with older *Athena servers or control panels.
-- Note: also adjust the account.sql.account_db setting in login_athena.conf.
-- Note: if your CP does not have a config setting for the `login` table name
-- you'll have to either modify its code or do some table renaming.