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

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

class CreateFilesTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
Bagus Pambudi committed
16 17 18 19 20 21 22 23 24 25 26 27
        Schema::create('swp_files', function (Blueprint $table) {
            $table->string('id', 36)->primary();
            $table->string('categories_file', 36);
            $table->string('title');
            $table->string('file');
            $table->boolean('is_active')->nullable();
            $table->integer('downloaded')->nullable();
            $table->string('slug')->nullable();
            $table->string('userid_created', 36)->nullable();
            $table->string('userid_updated', 36)->nullable();
            $table->timestamps();
        });
28 29 30 31 32 33 34 35 36
    }

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