Make migration table column lengths more realistic.
This commit is contained in:
parent
e8fe1f172c
commit
033455cc51
|
@ -154,9 +154,9 @@ public function install()
|
|||
// the bundle name and string migration name as an unique ID
|
||||
// for the migrations, allowing us to easily identify which
|
||||
// migrations have been run for each bundle.
|
||||
$table->string('bundle');
|
||||
$table->string('bundle', 50);
|
||||
|
||||
$table->string('name');
|
||||
$table->string('name', 200);
|
||||
|
||||
// When running a migration command, we will store a batch
|
||||
// ID with each of the rows on the table. This will allow
|
||||
|
|
Loading…
Reference in New Issue