From 033455cc51437f5e82fc2b1939109e87dbf63c68 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 21 Mar 2012 11:48:14 -0500 Subject: [PATCH] Make migration table column lengths more realistic. --- laravel/cli/tasks/migrate/migrator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/cli/tasks/migrate/migrator.php b/laravel/cli/tasks/migrate/migrator.php index 0ee059ad..5bf7617b 100644 --- a/laravel/cli/tasks/migrate/migrator.php +++ b/laravel/cli/tasks/migrate/migrator.php @@ -154,9 +154,9 @@ class Migrator extends Task { // 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