* removed name field from screenshots table

* updated db to version 7
This commit is contained in:
slawkens
2017-08-28 17:18:47 +02:00
parent eecdcfbabe
commit 430351aee3
3 changed files with 6 additions and 3 deletions

4
system/migrations/7.php Normal file
View File

@@ -0,0 +1,4 @@
<?php
if(fieldExist('name', TABLE_PREFIX . 'screenshots'))
$db->query("ALTER TABLE `" . TABLE_PREFIX . "screenshots` DROP `name`;");
?>