createTable('{{%goods_index}}', [ 'id' => Schema::TYPE_PK, 'goods_id' => $this->integer(11)->notNull(), 'entity' => $this->string(80)->notNull(), 'entity_id' => $this->integer(11)->notNull(), 'attribute' => $this->string(20)->notNull() ], $this->tableOptions); } /** * @inheritdoc */ public function down() { $this->dropTable('{{%goods_index}}'); } }