string('text_color')->default('#000000'); $table->string('background_color')->default('#FFFFFF'); $table->string('font')->default('Arial'); $table->float('font_size', 3, 1)->default(16); $table->float('line_spacing', 2, 3)->default(1.5); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('text_color'); }); Schema::table('users', function (Blueprint $table) { $table->dropColumn('background_color'); }); Schema::table('users', function (Blueprint $table) { $table->dropColumn('font'); }); Schema::table('users', function (Blueprint $table) { $table->dropColumn('font_size'); }); Schema::table('users', function (Blueprint $table) { $table->dropColumn('line_spacing'); }); } };