New fields for bills.

This commit is contained in:
James Cole 2020-08-08 11:07:15 +02:00
parent be0f2f0b9f
commit 027c212546
No known key found for this signature in database
GPG Key ID: B5669F9493CDE38D

View File

@ -28,6 +28,13 @@ class ChangesForV540 extends Migration
$table->dropColumn('order');
}
);
Schema::table(
'bills', static function (Blueprint $table) {
$table->dropColumn('end_date');
$table->dropColumn('extension_date');
}
);
}
/**
@ -47,6 +54,13 @@ class ChangesForV540 extends Migration
$table->string('provider')->nullable();
}
);
Schema::table(
'bills', static function (Blueprint $table) {
$table->date('end_date')->nullable()->after('date');
$table->date('extension_date')->nullable()->after('end_date');
}
);
// make column nullable:
Schema::table('oauth_clients', function (Blueprint $table) {