about summary refs log tree commit diff
path: root/app/models/identity.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2018-11-27 13:56:25 +0100
committerGitHub <noreply@github.com>2018-11-27 13:56:25 +0100
commit4afda5444a3cc864cb0f9a4f59493022d8a5e080 (patch)
treecd11982276089a98eb7f3558716ed16c4f774572 /app/models/identity.rb
parent2ba5d63a052300f4f81658eb5f582eed0c6ad6e4 (diff)
Change identities id column to a bigint (#9371)
* fix: change Identity's id column to a bigint

This appears to be the last model created using a 5.0 migration,
where column types defaulted to `integer` rather than `bigint`.

This migration changes the column type to match that of all of the
other ID columns.

* Change user_id column in identities to bigint and fix down-migration
Diffstat (limited to 'app/models/identity.rb')
-rw-r--r--app/models/identity.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/identity.rb b/app/models/identity.rb
index a5e0c09ec..8cc65aef4 100644
--- a/app/models/identity.rb
+++ b/app/models/identity.rb
@@ -3,12 +3,12 @@
 #
 # Table name: identities
 #
-#  id         :integer          not null, primary key
-#  user_id    :integer
 #  provider   :string           default(""), not null
 #  uid        :string           default(""), not null
 #  created_at :datetime         not null
 #  updated_at :datetime         not null
+#  id         :bigint(8)        not null, primary key
+#  user_id    :bigint(8)
 #
 
 class Identity < ApplicationRecord