charset = 'utf8'; $table->collation = 'utf8_unicode_ci'; $table->bigIncrements('eid'); $table->string('name'); $table->string('slug'); $table->timestamps(); $table->timestamp('start')->nullable(); $table->timestamp('end')->nullable(); $table->timestamp('pre_start')->nullable(); $table->timestamp('post_end')->nullable(); $table->unique('slug','uslug'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('events'); } }