ClearBowl/api/database/migrations/2019_12_04_112630_create_products_table.php

37 lines
845 B
PHP
Raw Normal View History

2019-12-04 12:49:41 +01:00
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProductsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('products', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name')->unique();
$table->integer('kcal')->nullable();
$table->float('carbohydrates')->nullable();
$table->float('protein')->nullable();
$table->float('fat')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('products');
}
}