diff options
-rw-r--r-- | Changelog-SVN.txt | 1 | ||||
-rw-r--r-- | sql-files/upgrade_svn1315.sql | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Changelog-SVN.txt b/Changelog-SVN.txt index 8f647ffc8..b86374ec7 100644 --- a/Changelog-SVN.txt +++ b/Changelog-SVN.txt @@ -1,6 +1,7 @@ Date Added 03/29 + * Added sql upgrade file in sql-files for svn1315's update [celest] * Added auto create 'save' folder from 'save-tmpl' when compiling for the first time, thanks to Jbain * Fixed 'use_sql_db' not read properly in SQL char server, thanks to Wallex diff --git a/sql-files/upgrade_svn1315.sql b/sql-files/upgrade_svn1315.sql new file mode 100644 index 000000000..46d00c9c4 --- /dev/null +++ b/sql-files/upgrade_svn1315.sql @@ -0,0 +1,3 @@ +ALTER TABLE `char` ADD `father` int(11) NOT NULL default '0';
+ALTER TABLE `char` ADD `mother` int(11) NOT NULL default '0';
+ALTER TABLE `char` ADD `child` int(11) NOT NULL default '0';
\ No newline at end of file |