<?php

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

class Create{{ pascalCaseSigular }}Table extends Migration
{
    public function up()
    {
        Schema::create('{{ name }}_table', function (Blueprint $table) {
            $table->id();

            // add fields

            $table->timestamps();
        });
    }
}
