Commit 3387aadf by Ilya

Update migration.md. Fix missed quotes

parent 80fe1076
...@@ -82,7 +82,7 @@ class m101129_185401_create_news_table extends \yii\db\Migration ...@@ -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 ...@@ -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',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment