increments('id'); $table->text('title')->nullable(); $table->dateTime('start_date')->nullable(); $table->dateTime('expire_date')->nullable(); $table->integer('user_id')->nullable(); $table->text('notice')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('usernotices'); } }