unsignedInteger('id', true)->comment('고유번호'); $table->string('name', 100)->default('')->comment('변수명'); $table->string('key', 30)->default('')->comment('변수키'); $table->text('value')->comment('변수값'); $table->tinyInteger('system')->default(1)->comment('시스템변수[0:일반,1:시스템(키값 수정 및 삭제불가)]'); $table->unsignedInteger('created_id')->nullable()->comment('등록 회원번호'); $table->unsignedInteger('updated_id')->nullable()->comment('수정 회원번호'); $table->datetime('created_at')->nullable()->comment('등록일시'); $table->datetime('updated_at')->nullable()->comment('수정일시'); // 인덱스 $table->index('key', 'uk_tbl_setting_key'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('setting'); } }