2021-03-05 10:23:10 +00:00
|
|
|
<?php
|
2021-03-19 12:51:25 +00:00
|
|
|
require_once realpath(dirname(__FILE__) ."/../../bootstrap.php");
|
2021-03-05 10:23:10 +00:00
|
|
|
use Illuminate\Database\Capsule\Manager as Capsule;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
|
|
|
|
|
|
|
Capsule::schema()->create("votes", function (Blueprint $table){
|
|
|
|
$table->id();
|
|
|
|
$table->foreignId("group_id")->constrained("groups");
|
|
|
|
$table->tinyInteger("points");
|
|
|
|
$table->text("comment")->nullable();
|
|
|
|
$table->timestamps();
|
|
|
|
});
|