c3lf-system-3/database/migrations/2019_11_14_232911_create_items_table.php

40 lines
940 B
PHP
Raw Normal View History

2019-11-15 20:57:07 +00:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateItemsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('items', function (Blueprint $table) {
$table->bigIncrements('iid');
$table->string('bezeichnung');
$table->string('wann');
$table->string('wo');
$table->unsignedBigInteger('eid');
$table->unsignedBigInteger('cid');
$table->timestamps();
$table->foreign('eid')->references('eid')->on('events');
$table->foreign('cid')->references('cid')->on('containers');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('items');
}
}