diff --git a/database/migrations/2025_10_20_170041_create_settings_table.php b/database/migrations/2025_10_20_170041_create_settings_table.php new file mode 100644 index 0000000..7a42262 --- /dev/null +++ b/database/migrations/2025_10_20_170041_create_settings_table.php @@ -0,0 +1,40 @@ +id(); + $table->string('key')->unique(); + $table->text('value')->nullable(); + $table->enum('type', ['string', 'text', 'boolean', 'integer', 'float', 'array', 'json'])->default('string'); + $table->string('group')->default('general'); + $table->string('label'); + $table->text('description')->nullable(); + $table->boolean('is_public')->default(false); + $table->boolean('is_active')->default(true); + $table->timestamps(); + $table->softDeletes(); + + $table->index('key'); + $table->index('group'); + $table->index('is_active'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('settings'); + } +};