From 3387aadfe1334011e011139cf32f3509bcd2e42e Mon Sep 17 00:00:00 2001 From: Ilya Date: Sat, 13 Jul 2013 00:05:02 +0300 Subject: [PATCH] Update migration.md. Fix missed quotes --- docs/guide/migration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/migration.md b/docs/guide/migration.md index 1e720cb..66102fb 100644 --- a/docs/guide/migration.md +++ b/docs/guide/migration.md @@ -82,7 +82,7 @@ class m101129_185401_create_news_table extends \yii\db\Migration { public function up() { - $this->db->createCommand()->createTable('tbl_news, array( + $this->db->createCommand()->createTable('tbl_news', array( 'id' => 'pk', 'title' => 'string NOT NULL', 'content' => 'text', @@ -118,7 +118,7 @@ class m101129_185401_create_news_table extends \yii\db\Migration $transaction=$this->getDbConnection()->beginTransaction(); try { - $this->db->createCommand()->createTable('tbl_news, array( + $this->db->createCommand()->createTable('tbl_news', array( 'id' => 'pk', 'title' => 'string NOT NULL', 'content' => 'text',