Laravel 4迁移Schema - 索引长度

时间:2014-07-17 00:21:59

标签: laravel laravel-4

我遇到了laravel迁移的问题,我需要为特定列设置索引长度,但看起来Schema / Blueprint index()没有这样的功能。 Laravel Docs

      [Illuminate\Database\QueryException]                                         
      SQLSTATE[42000]: Syntax error or access violation: 
      1170 BLOB/TEXT column 'description' used in key specification 
      without a key length (SQL: alter table `Customers` 
      add index `description_idx`(`description`)) 

原始sql查询行:

KEY `description_idx` (`description`(100)) // index length = 100

Laravel迁移代码行:

$table->text('description')->nullable()->index('`description_idx`'); // no index length here

我觉得我能做的最好的事情就是改变列类型,但也许有更合适的方法来解决这个问题?

1 个答案:

答案 0 :(得分:8)

您可以使用DB :: statement()手动创建这些索引;在您的迁移中。

在你的up()做类似的事情

DB::statement('CREATE INDEX description_idx ON Customers (description(100));');

然后在你的向下()你可以简单地

Schema::table('Customers', function($table) {
    $table->dropIndex('description_idx');
});

希望有所帮助。