58 lines
1.6 KiB
PHP
58 lines
1.6 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateTableResult extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
if (!Schema::hasTable('result'))
|
|
Schema::create('result', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->integer('voter_id')->unsigned();
|
|
$table->integer('position_id')->unsigned();
|
|
$table->integer('nominee_id')->unsigned();
|
|
|
|
$table->timestamps();
|
|
$table->integer('election_id')->unsigned();
|
|
|
|
$table->foreign('election_id')
|
|
->references('id')
|
|
->on('election')
|
|
->onDelete('cascade');
|
|
|
|
$table->foreign('position_id')
|
|
->references('id')
|
|
->on('position')
|
|
->onDelete('cascade');
|
|
|
|
$table->foreign('voter_id')
|
|
->references('id')
|
|
->on('voter')
|
|
->onDelete('cascade');
|
|
|
|
$table->foreign('nominee_id')
|
|
->references('id')
|
|
->on('nominee')
|
|
->onDelete('cascade');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('result');
|
|
}
|
|
}
|