Skip to content

Commit 7c00c82

Browse files
authored
Fixed incorrect column name (#23)
1 parent aea1f5c commit 7c00c82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

updates/v1.3.1/add_sort_order.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public function up()
1414
return;
1515
}
1616

17-
if (!Schema::hasColumn(self::TABLE_NAME, 'found')) {
17+
if (!Schema::hasColumn(self::TABLE_NAME, 'sort_order')) {
1818
Schema::table(self::TABLE_NAME, function($table)
1919
{
2020
$table->integer('sort_order')->default(0);

0 commit comments

Comments
 (0)