createTable('{{%table}}', [ 'id' => $this->primaryKey(), 'name' => $this->string(), 'places' => $this->integer(), 'type' => $this->string(), 'slug' => $this->string() ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('{{%table}}'); } }