<?php

use Phpmig\Migration\Migration;
use Illuminate\Database\Capsule\Manager as Capsule;

class !name extends Migration
{
    /**
     * Do the migration
     */
    public function up()
    {
        Capsule::schema()->create('?name', function($table)
        {
            $table->increments('id');
            $table->timestamps();
        });
    }

    /**
     * Undo the migration
     */
    public function down()
    {
        Capsule::schema()->drop('?name');
    }
}