base-laravel/database/migrations/2022_02_08_001430_create_ingredients_table.php

38 lines
893 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateIngredientsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('ingredients', function (Blueprint $table) {
$table->id();
$table->unsignedInteger('recipe_id');
$table->string('name');
$table->unsignedInteger('quantity');
$table->string('measurement');
$table->longText('special_notes');
$table->timestamps();
$table->foreign('recipe_id')->references('id')->on('recipes');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('ingredients');
}
}