Browse Source

Merge pull request #617 from aivus/patch-1

Update migration.md. Fix missed quotes
tags/2.0.0-beta
Qiang Xue 12 years ago
parent
commit
f88b2d0859
  1. 4
      docs/guide/migration.md

4
docs/guide/migration.md

@ -82,7 +82,7 @@ class m101129_185401_create_news_table extends \yii\db\Migration
{ {
public function up() public function up()
{ {
$this->db->createCommand()->createTable('tbl_news, array( $this->db->createCommand()->createTable('tbl_news', array(
'id' => 'pk', 'id' => 'pk',
'title' => 'string NOT NULL', 'title' => 'string NOT NULL',
'content' => 'text', 'content' => 'text',
@ -118,7 +118,7 @@ class m101129_185401_create_news_table extends \yii\db\Migration
$transaction=$this->getDbConnection()->beginTransaction(); $transaction=$this->getDbConnection()->beginTransaction();
try try
{ {
$this->db->createCommand()->createTable('tbl_news, array( $this->db->createCommand()->createTable('tbl_news', array(
'id' => 'pk', 'id' => 'pk',
'title' => 'string NOT NULL', 'title' => 'string NOT NULL',
'content' => 'text', 'content' => 'text',

Loading…
Cancel
Save