2019_11_12_114258_create_settings_table.php 827 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateSettingsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('swp_settings', function (Blueprint $table) {
17
            $table->string('id', 36)->primary();
18 19
            $table->string('name_setting');
            $table->string('value_setting');
20 21
            $table->string('userid_created', 36)->nullable();
            $table->string('userid_updated', 36)->nullable();
22 23 24 25 26 27 28 29 30 31 32 33 34 35
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('swp_settings');
    }
}