id(); $table->bigInteger('employee_id'); $table->string('login_ip',100)->comment('登录IP'); $table->string('login_browser_info')->comment('浏览器信息'); $table->timestamp('created_at')->comment('登录时间'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('uc_employee_login_log_t'); } }