increments('id'); $table->integer('type_id')->comment('类型ID'); $table->string('code_name',255)->comment('CODE名称'); $table->integer('code_id')->comment('CODE ID'); $table->string('code_value',255)->comment('CODE值'); $table->integer('code_seq')->comment('顺序'); $table->string('code_dsp_name_cn',255)->comment('显示名称'); $table->string('code_dsp_name_y',255)->comment('别名')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('codes'); } }