added models
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class CreateEinteilungsTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('einteilungen', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->timestamps();
|
||||
|
||||
$table->dateTime('start');
|
||||
$table->dateTime('ende')->nullable();
|
||||
|
||||
$table->integer('benutzer_id')->unsigned();
|
||||
$table->foreign('benutzer_id')->references('id')->on('benutzer');
|
||||
|
||||
$table->integer('veranstaltung_id')->unsigned();
|
||||
$table->foreign('veranstaltung_id')->references('id')->on('veranstaltungen');
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('einteilungen');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user