2014-12-20 16:56:46 +10:30
|
|
|
<?php
|
2016-11-29 05:03:53 +00:00
|
|
|
|
2015-08-26 16:18:58 +09:30
|
|
|
/*
|
|
|
|
* This file is part of Flarum.
|
|
|
|
*
|
2019-11-28 00:16:50 +00:00
|
|
|
* For detailed copyright and license information, please view the
|
|
|
|
* LICENSE file that was distributed with this source code.
|
2015-08-26 16:18:58 +09:30
|
|
|
*/
|
|
|
|
|
2016-02-25 00:50:54 +09:00
|
|
|
use Flarum\Database\Migration;
|
2014-12-20 16:56:46 +10:30
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
|
2016-02-25 00:50:54 +09:00
|
|
|
return Migration::createTable(
|
|
|
|
'groups',
|
|
|
|
function (Blueprint $table) {
|
|
|
|
$table->increments('id');
|
|
|
|
$table->string('name_singular', 100);
|
|
|
|
$table->string('name_plural', 100);
|
|
|
|
$table->string('color', 20)->nullable();
|
|
|
|
$table->string('icon', 100)->nullable();
|
2015-05-06 11:25:19 +09:30
|
|
|
}
|
2016-02-25 00:50:54 +09:00
|
|
|
);
|