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