createTable('user_ips', [ 'id' => $this->primaryKey(), 'user_id' => $this->bigInteger(), 'ip' => $this->string(), 'tm' => $this->timestamp() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('user_ips'); } }