This commit is contained in:
James Cole
2019-09-12 06:47:04 +02:00
parent a0780e434e
commit 88c08188f7
3 changed files with 13 additions and 10 deletions

View File

@@ -35,7 +35,7 @@ class ChangesFor3101 extends Migration
{
Schema::table(
'import_jobs',
function (Blueprint $table) {
static function (Blueprint $table) {
$table->dropColumn('extended_status');
}
);
@@ -50,7 +50,7 @@ class ChangesFor3101 extends Migration
{
Schema::table(
'import_jobs',
function (Blueprint $table) {
static function (Blueprint $table) {
$table->text('extended_status')->nullable();
}
);