bigIncrements('id'); $table->enum('category', ['未定義','男', '女','團','外', '其他'])->default('未定義')->comment('歌星類別'); $table->string('name')->comment('歌星名稱'); $table->string('simplified')->comment('歌星簡體'); $table->string('phonetic_abbr')->comment('歌星注音'); $table->string('pinyin_abbr')->comment('歌星拼音'); $table->integer('strokes_abbr')->comment('歌星筆劃'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('artists'); } };