diff --git a/Changelog-SVN.txt b/Changelog-SVN.txt
index 8f647ffc86..b86374ec71 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 0000000000..46d00c9c48
--- /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