14 use Illuminate\Database\Migrations\Migration;
15 use Illuminate\Database\Schema\Builder;
16 use Illuminate\Database\Schema\Blueprint;
17 use Illuminate\Database\Capsule\Manager as Capsule;
24 public function up() {
26 Capsule::schema()->create(
'scheduled_tasks',
function (Blueprint $table) {
27 $table->string(
'class_name', 255);
28 $table->datetime(
'last_run')->nullable();
29 $table->unique([
'class_name'],
'scheduled_tasks_pkey');
38 Capsule::schema()->drop(
'scheduled_tasks');