Skip to content

Commit 9f7bdee

Browse files
committed
- Increased slug column size to 1024
1 parent 22a95c7 commit 9f7bdee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/migrations/2015_02_07_172649_create_permissions_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function up()
1818
$table->integer('inherit_id')->unsigned()->nullable()->index();
1919
$table->foreign('inherit_id')->references('id')->on('permissions');
2020
$table->string('name')->index();
21-
$table->string('slug')->index();
21+
$table->string('slug', 1024)->index();
2222
$table->text('description')->nullable();
2323
$table->timestamps();
2424
});

0 commit comments

Comments
 (0)