Skip to content

Commit c47eb88

Browse files
authored
Merge pull request #4 from reallyli/update-options-migration
Schema default string length
2 parents 1d87d77 + caa10a8 commit c47eb88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2017_03_03_100000_create_options_table.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function up()
1616
Schema::create('options', function (Blueprint $table) {
1717
$table->increments('id');
1818
$table->string('module', 40);
19-
$table->string('key');
19+
$table->string('key', 191);
2020
$table->text('value');
2121
$table->string('comment')->nullable();
2222
$table->timestamps();

0 commit comments

Comments
 (0)