Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cebf5df

Browse files
authoredJan 31, 2022
tweak migration and php support (#25)
1 parent c711ab3 commit cebf5df

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^7.3",
22-
"laravel/framework": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0"
21+
"php": "^7.3|^8.0",
22+
"laravel/framework": "~5.8.0|^6.0|^7.0|^8.0|^9.0"
2323
},
2424
"require-dev": {
25-
"orchestra/testbench": "3.8.*|4.*|5.*",
25+
"orchestra/testbench": "3.8.*|4.*|5.*|6.*",
2626
"mockery/mockery": "^0.9.4 || ~1.0",
2727
"phpunit/phpunit": "^8.5"
2828
},

‎src/migrations/2014_10_00_000001_add_group_column_on_settings_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function up()
1515
{
1616
Schema::table('settings', function (Blueprint $table) {
1717
$table->dropUnique('settings_name_unique');
18-
$table->string('group')->default('default');
18+
$table->string('group')->after('val')->default('default');
1919
});
2020
}
2121

0 commit comments

Comments
 (0)
Please sign in to comment.