| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 | <?phpuse yii\db\Migration;/** * Handles the creation for table `{{%article_module}}`. */class m160718_040058_create_article_module_table extends Migration{    /**     * @inheritdoc     */    public function up()    {        $tableOptions = null;        if ($this->db->driverName === 'mysql') {            $tableOptions = 'CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE=InnoDB';        }        $this->createTable('{{%article_module}}', [            'id' => $this->primaryKey(),            'name' => $this->string(50),            'title' => $this->string(50),        ], $tableOptions);        $this->createTable('{{%article_exhibition}}', [            'id' => $this->integer(11),            'start_at' => $this->dateTime()->comment('开始时间'),            'end_at' => $this->dateTime()->comment('结束时间'),            'city' => $this->string(50)->comment('举办城市'),            'address' => $this->string(255)->comment('举办地址'),            'PRIMARY KEY (id)',        ], $tableOptions);        $moduleColumn = new \yii\db\ColumnSchemaBuilder('string');        $moduleColumn->comment('文档类型');        $moduleColumn->defaultValue('base');// 默认普通文章        $this->addColumn('{{%article}}', 'module', $moduleColumn);        $this->addColumn('{{%category}}', 'module', $moduleColumn);        $this->createTable('{{%article_download}}', [            'id' => $this->integer(11),            'content' => $this->text(),            'PRIMARY KEY (id)',        ], $tableOptions);        $this->createTable('{{%article_photo}}', [            'id' => $this->integer(11),            'PRIMARY KEY (id)',        ], $tableOptions);        $this->insert('{{%article_module}}', [            'name' => 'base',            'title' => '普通',        ]);        $this->insert('{{%article_module}}', [            'name' => 'exhibition',            'title' => '展会',        ]);        $this->insert('{{%article_module}}', [            'name' => 'download',            'title' => '下载',        ]);        $this->insert('{{%article_module}}', [            'name' => 'photo',            'title' => '相册',        ]);    }    /**     * @inheritdoc     */    public function down()    {        $this->dropTable('{{%article_module}}');        $this->dropTable('{{%article_exhibition}}');        $this->dropTable('{{%article_download}}');        $this->dropTable('{{%article_photo}}');        $this->dropColumn('{{%article}}', 'module');        $this->dropColumn('{{%category}}', 'module');    }}
 |