We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4bca3a4 + 9be1b65 commit f7cf917Copy full SHA for f7cf917
1 file changed
database/migrations/2016_10_23_193810_add_foreign_keys_servers.php
@@ -16,7 +16,7 @@ public function up()
16
MODIFY COLUMN owner INT(10) UNSIGNED NOT NULL,
17
MODIFY COLUMN allocation INT(10) UNSIGNED NOT NULL,
18
MODIFY COLUMN service INT(10) UNSIGNED NOT NULL,
19
- MODIFY COLUMN servers.option INT(10) UNSIGNED NOT NULL
+ MODIFY COLUMN `option` INT(10) UNSIGNED NOT NULL
20
');
21
22
Schema::table('servers', function (Blueprint $table) {
@@ -55,7 +55,7 @@ public function down()
55
MODIFY COLUMN owner MEDIUMINT(8) UNSIGNED NOT NULL,
56
MODIFY COLUMN allocation MEDIUMINT(8) UNSIGNED NOT NULL,
57
MODIFY COLUMN service MEDIUMINT(8) UNSIGNED NOT NULL,
58
- MODIFY COLUMN servers.option MEDIUMINT(8) UNSIGNED NOT NULL
+ MODIFY COLUMN `option` MEDIUMINT(8) UNSIGNED NOT NULL
59
60
}
61
0 commit comments