createTable('hh_job', [ 'id' => $this->primaryKey(), 'employer_id' => $this->integer(11), 'hh_id' => $this->integer(11), 'title' => $this->string(255), 'url' => $this->string(255), 'salary_from' => $this->integer(11), 'salary_to' => $this->integer(11), 'salary_currency' => $this->string(100), 'address' => $this->string(255), 'dt_add' => $this->integer(11) ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('hh_job'); } }