mirror of
https://github.com/flarum/framework.git
synced 2025-04-02 23:19:04 +08:00
parent
eb975802ea
commit
a6ecba220a
@ -8,12 +8,12 @@
|
|||||||
* file that was distributed with this source code.
|
* file that was distributed with this source code.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
use Flarum\Tags\Tag;
|
use Illuminate\Database\ConnectionInterface;
|
||||||
use Illuminate\Database\Schema\Blueprint;
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
use Illuminate\Database\Schema\Builder;
|
use Illuminate\Database\Schema\Builder;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'up' => function (Builder $schema) {
|
'up' => function (Builder $schema, ConnectionInterface $db) {
|
||||||
$schema->create('tags', function (Blueprint $table) {
|
$schema->create('tags', function (Blueprint $table) {
|
||||||
$table->increments('id');
|
$table->increments('id');
|
||||||
$table->string('name', 100);
|
$table->string('name', 100);
|
||||||
@ -35,8 +35,7 @@ return [
|
|||||||
$table->integer('last_discussion_id')->unsigned()->nullable();
|
$table->integer('last_discussion_id')->unsigned()->nullable();
|
||||||
});
|
});
|
||||||
|
|
||||||
Tag::unguard();
|
$db->table('tags')->insert([
|
||||||
Tag::insert([
|
|
||||||
'name' => 'General',
|
'name' => 'General',
|
||||||
'slug' => 'general',
|
'slug' => 'general',
|
||||||
'color' => '#888',
|
'color' => '#888',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user