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