<?php

namespace {{migrations_namespace}};

use Framework\Contracts\Migration;
use Framework\Database\Schema\Structure;
use Framework\Supports\Facades\Schema;

class {{class_name}} implements Migration
{
    public function up()
    {
        Schema::create('{{table}}', function (Structure $table) {
            $table->id();
            $table->timestamps();
        });
    }

    public function down()
    {
        Schema::drop_if_exists('{{table}}');
    }
}
