Browse Source

Fixes #1204: the length of primary key for migration table is too long.

tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
a6cb556e21
  1. 2
      framework/yii/console/controllers/MigrateController.php

2
framework/yii/console/controllers/MigrateController.php

@ -594,7 +594,7 @@ class MigrateController extends Controller
{
echo 'Creating migration history table "' . $this->migrationTable . '"...';
$this->db->createCommand()->createTable($this->migrationTable, [
'version' => 'varchar(255) NOT NULL PRIMARY KEY',
'version' => 'varchar(180) NOT NULL PRIMARY KEY',
'apply_time' => 'integer',
])->execute();
$this->db->createCommand()->insert($this->migrationTable, [

Loading…
Cancel
Save