Skip to content

Commit

Permalink
tweak migration and php support (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
saqueib authored Jan 31, 2022
1 parent c711ab3 commit cebf5df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
}
],
"require": {
"php": "^7.3",
"laravel/framework": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0"
"php": "^7.3|^8.0",
"laravel/framework": "~5.8.0|^6.0|^7.0|^8.0|^9.0"
},
"require-dev": {
"orchestra/testbench": "3.8.*|4.*|5.*",
"orchestra/testbench": "3.8.*|4.*|5.*|6.*",
"mockery/mockery": "^0.9.4 || ~1.0",
"phpunit/phpunit": "^8.5"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function up()
{
Schema::table('settings', function (Blueprint $table) {
$table->dropUnique('settings_name_unique');
$table->string('group')->default('default');
$table->string('group')->after('val')->default('default');
});
}

Expand Down

0 comments on commit cebf5df

Please sign in to comment.