comment('老师管理'); $table->increments('id'); $table->integer('admin_id')->nullable(); $table->integer('department_id')->nullable(); $table->string('name')->nullable()->comment('名字'); $table->string('mobile')->nullable()->comment('手机号'); $table->string('sex')->nullable()->comment('性别'); $table->string('introduce')->nullable()->comment('介绍'); $table->dateTime('created_at')->nullable(); $table->dateTime('updated_at')->nullable(); $table->dateTime('deleted_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('teachers'); } };