Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvenga committed Dec 27, 2022
1 parent f408efa commit ad005fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
public function up()
{
Schema::create('settings', function (Blueprint $table) {
Schema::table('settings', function (Blueprint $table) {
$table->text('value')->change();
});
}
Expand All @@ -24,7 +24,7 @@ public function up()
*/
public function down()
{
Schema::create('settings', function (Blueprint $table) {
Schema::table('settings', function (Blueprint $table) {
$table->string('value', 190)->change();
});
}
Expand Down

0 comments on commit ad005fc

Please sign in to comment.