increments('id'); //индекс $table->string('title'); //название $table->string('post'); //описание $table->date('date'); //дата провидения $table->string('type'); //тип мероприятия $table->string('last_modifit'); //последний изменивший $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('cruds'); } }