This commit is contained in:
Hannes Verschore 2015-10-19 12:36:44 +02:00
Родитель dbea91a1cb
Коммит 294b1f27d7
1 изменённых файлов: 11 добавлений и 0 удалений

11
database/migration-1.php Normal file
Просмотреть файл

@ -0,0 +1,11 @@
<?php
// Demote 'stamp' to a number that will be sequential to base off the sorting.
function migrate() {
mysql_query("ALTER TABLE `awfy_run` CHANGE `stamp` `sort_order` INT( 10 ) UNSIGNED NOT NULL ;") or die(mysql_error());
}
function rollback() {
mysql_query("ALTER TABLE `awfy_run` CHANGE `sort_order` `stamp` INT( 10 ) UNSIGNED NOT NULL ;") or die(mysql_error());
}