kcal/database/migrations/2020_12_21_214128_create_fo...

44 lines
1.4 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFoodsTable extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('foods', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('slug')->unique();
$table->string('detail')->nullable();
$table->string('brand')->nullable();
$table->string('source')->nullable();
$table->string('notes')->nullable();
$table->unsignedFloat('serving_size');
$table->enum('serving_unit', ['tsp', 'tbsp', 'cup', 'oz'])->nullable();
$table->string('serving_unit_name')->nullable();
$table->unsignedFloat('serving_weight');
$table->unsignedFloat('calories')->default(0);
$table->unsignedFloat('fat')->default(0);
$table->unsignedFloat('cholesterol')->default(0);
$table->unsignedFloat('sodium')->default(0);
$table->unsignedFloat('carbohydrates')->default(0);
$table->unsignedFloat('protein')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('foods');
}
}