createTable('{{%vacancy}}', [ 'vacancy_id' => $this->primaryKey(), 'user_id' => $this->integer()->notNull(), 'name' => $this->string(255)->notNull(), 'link' => $this->string(255), 'date_add' => $this->timestamp(), 'user_add_id' => $this->integer(), 'view_count' => $this->integer()->defaultValue(0), 'user_name' => $this->string(255), 'city' => $this->string(255), 'description' => $this->text(), ], $tableOptions); } public function down() { $this->dropTable('{{%vacancy}}'); } }