date('lo_date')->comment('년월일'); $table->integer('lo_count')->default(0)->comment('방문횟수'); // 인덱스 $table->primary('lo_date', 'pk_tbl_counter_date'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('counter'); } }