Skip to content

Instantly share code, notes, and snippets.

@daanfl
Created April 19, 2019 12:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daanfl/43bae2372b30072a69b37d6f4d36ec31 to your computer and use it in GitHub Desktop.
Save daanfl/43bae2372b30072a69b37d6f4d36ec31 to your computer and use it in GitHub Desktop.
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProductsTable extends Migration
{
public function up()
{
Schema::create('products', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('title');
$table->double('price');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('products');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment