adrema/database/migrations/2017_04_12_010000_create_gr...

33 lines
627 B
PHP
Raw Normal View History

2020-04-10 20:32:12 +02:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
2020-04-12 00:26:44 +02:00
class CreateGroupsTable extends Migration
2020-04-10 20:32:12 +02:00
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
2020-04-12 00:26:44 +02:00
Schema::create('groups', function (Blueprint $table) {
2021-04-10 02:57:10 +02:00
$table->id();
2020-04-12 00:26:44 +02:00
$table->string('name');
2021-06-23 01:05:17 +02:00
$table->unsignedInteger('nami_id');
2020-04-10 20:32:12 +02:00
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
2020-04-12 00:26:44 +02:00
Schema::dropIfExists('groups');
2020-04-10 20:32:12 +02:00
}
}