createTable('requests', [ 'id' => $this->primaryKey(), 'user_id' => $this->integer(), 'phone' => $this->string(), 'ip' => $this->string(), 'ua' => $this->string(), 'result' => $this->text(), 'tm' => $this->timestamp() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('requests'); } }