mirror of
https://github.com/flarum/core.git
synced 2025-02-22 18:22:34 +01:00
34 lines
693 B
PHP
34 lines
693 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateGroupsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('groups', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->string('name_singular');
|
|
$table->string('name_plural');
|
|
$table->string('color')->nullable();
|
|
$table->string('icon')->nullable();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::drop('groups');
|
|
}
|
|
}
|