increments('id'); $table->string('name', 30)->nullable(); $table->date('location_id')->nullable(); $table->date('start_date')->nullable(); $table->integer('end_date')->nullable(); $table->string('status', 30)->nullable(); $table->text('description')->nullable(); $table->text('image')->nullable(); $table->text('slug')->nullable(); $table->integer('user_id')->nullable(); $table->text('user_type')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('notification_schedules'); } }