adding in change to settings table
This commit is contained in:
parent
8640cad033
commit
b124b9af4d
1 changed files with 11 additions and 0 deletions
|
@ -18,6 +18,13 @@ class UpdateLegacyLocale extends Migration
|
||||||
//
|
//
|
||||||
$table->string('locale', 10)->nullable()->default('en-US')->change();
|
$table->string('locale', 10)->nullable()->default('en-US')->change();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Schema::table('settings', function (Blueprint $table) {
|
||||||
|
//
|
||||||
|
$table->string('locale', 10)->nullable()->default('en-US')->change();
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -32,5 +39,9 @@ class UpdateLegacyLocale extends Migration
|
||||||
//
|
//
|
||||||
$table->string('locale', 10)->nullable()->default(config('app.locale'))->change();
|
$table->string('locale', 10)->nullable()->default(config('app.locale'))->change();
|
||||||
});
|
});
|
||||||
|
Schema::table('settings', function (Blueprint $table) {
|
||||||
|
//
|
||||||
|
$table->string('locale', 10)->nullable()->default(config('app.locale'))->change();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue