boolean('label2_enable')->default(false); $table->string('label2_template')->nullable()->default('DefaultLabel'); $table->string('label2_title')->nullable()->default(null); $table->boolean('label2_asset_logo')->default(false); $table->string('label2_1d_type')->default('default'); $table->string('label2_2d_type')->default('default'); $table->string('label2_2d_target')->default('hardware_id'); $table->string('label2_fields')->default( trans('admin/hardware/form.tag').'=asset_tag;'. trans('admin/hardware/form.name').'=name;'. trans('admin/hardware/form.serial').'=serial;'. trans('admin/hardware/form.model').'=model.name;' ); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('settings', function (Blueprint $table) { if (Schema::hasColumn('settings', 'label2_enable')) $table->dropColumn('label2_enable'); if (Schema::hasColumn('settings', 'label2_template')) $table->dropColumn('label2_template'); if (Schema::hasColumn('settings', 'label2_title')) $table->dropColumn('label2_title'); if (Schema::hasColumn('settings', 'label2_asset_logo')) $table->dropColumn('label2_asset_logo'); if (Schema::hasColumn('settings', 'label2_1d_type')) $table->dropColumn('label2_1d_type'); if (Schema::hasColumn('settings', 'label2_2d_type')) $table->dropColumn('label2_2d_type'); if (Schema::hasColumn('settings', 'label2_2d_target')) $table->dropColumn('label2_2d_target'); if (Schema::hasColumn('settings', 'label2_fields')) $table->dropColumn('label2_fields'); }); } }