increments('id'); $table->string('unicode', 191)->nullable()->comment('unicode 字符'); $table->string('class', 191)->nullable()->comment('类名'); $table->string('name', 191)->nullable()->comment('名称'); $table->integer('sort')->default(0)->comment('排序'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('icons'); } }