14 lines
445 B
PHP
14 lines
445 B
PHP
<?php
|
|
require_once "../../bootstrap.php";
|
|
use Illuminate\Database\Capsule\Manager as Capsule;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
Capsule::schema()->create("Group", function (Blueprint $table){
|
|
$table->id();
|
|
$table->string("name");
|
|
$table->dateTime("startTime");
|
|
$table->dateTime("endTime");
|
|
$table->string("keyWord")->nullable();
|
|
$table->text("description")->nullable();
|
|
}); |