Skip to content

Commit

Permalink
- Increased slug column size to 1024
Browse files Browse the repository at this point in the history
  • Loading branch information
konovalov-nk committed Nov 28, 2016
1 parent 22a95c7 commit 9f7bdee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function up()
$table->integer('inherit_id')->unsigned()->nullable()->index();
$table->foreign('inherit_id')->references('id')->on('permissions');
$table->string('name')->index();
$table->string('slug')->index();
$table->string('slug', 1024)->index();
$table->text('description')->nullable();
$table->timestamps();
});
Expand Down

0 comments on commit 9f7bdee

Please sign in to comment.