about summary refs log tree commit diff
path: root/db/migrate
diff options
context:
space:
mode:
authorpluralcafe-docker <git@plural.cafe>2019-01-04 21:19:55 +0000
committerpluralcafe-docker <git@plural.cafe>2019-01-04 21:19:55 +0000
commit74134e490c49d8a7d88cc69720e22cd88cee9233 (patch)
treebd7fc8d41f7887037401ff86c81bc93d5fb00d01 /db/migrate
parent797a8429a0deb511e6d6092edad39f856231534e (diff)
parent0acd51acdc1e670bf57f58671cb8e30743782c63 (diff)
Merge branch 'glitch'
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20181219235220_add_created_by_application_id_to_users.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/db/migrate/20181219235220_add_created_by_application_id_to_users.rb b/db/migrate/20181219235220_add_created_by_application_id_to_users.rb
new file mode 100644
index 000000000..17ce900af
--- /dev/null
+++ b/db/migrate/20181219235220_add_created_by_application_id_to_users.rb
@@ -0,0 +1,8 @@
+class AddCreatedByApplicationIdToUsers < ActiveRecord::Migration[5.2]
+  disable_ddl_transaction!
+
+  def change
+    add_reference :users, :created_by_application, foreign_key: { to_table: 'oauth_applications', on_delete: :nullify }, index: false
+    add_index :users, :created_by_application_id, algorithm: :concurrently
+  end
+end