increments('id'); $table->string('name')->index(); $table->text('description'); $table->timestamps(); }); \App\CustomerLogStatus::query()->create([ "name"=>"日志" ]); } public function down() { Schema::drop('customer_log_statuses'); } }