increments('id'); $table->string('name'); $table->string('ocom'); $table->integer('periode'); $table->integer('level'); $table->string('location'); $table->text('desc'); $table->text('comment'); $table->text('comment_officer'); $table->integer('event_id'); $table->string('user_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('courses'); } }