<?php

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

class Testing extends Migration
{
    public function up()
    {
        Schema::create('products', function (Blueprint $table) {
            $table->increments("id");
            $table->timestamp("created_at")->nullable(true);
            $table->timestamp("updated_at")->nullable(true);
        });
    }

    public function down()
    {
        Schema::drop('products');
    }
}
