Commit 033455cc authored by Taylor Otwell's avatar Taylor Otwell

Make migration table column lengths more realistic.

parent e8fe1f17
...@@ -154,9 +154,9 @@ class Migrator extends Task { ...@@ -154,9 +154,9 @@ class Migrator extends Task {
// the bundle name and string migration name as an unique ID // the bundle name and string migration name as an unique ID
// for the migrations, allowing us to easily identify which // for the migrations, allowing us to easily identify which
// migrations have been run for each bundle. // 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 // When running a migration command, we will store a batch
// ID with each of the rows on the table. This will allow // ID with each of the rows on the table. This will allow
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment