Feuerwehr-eppingen/database/migrations/2023_03_10_081037_create_settings_table.php
Marco Glietsch 343c8cd9b2 Systemeinstellungen Formular
Es gibt jetzt ein Formular für Systemeinstellungen. Es ist erreichbar über das Hauptmenü unter: Verwaltung -> System -> Einstellungen
2023-03-10 12:40:46 +01:00

35 lines
700 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateSettingsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('settings', function (Blueprint $table) {
$table->increments('id');
$table->string('name', 100);
$table->string('type', 20);
$table->string('value', 255);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('settings');
}
}