The code powering m.abunchtell.com https://m.abunchtell.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

9 行
330 B

  1. class AddCreatedByApplicationIdToUsers < ActiveRecord::Migration[5.2]
  2. disable_ddl_transaction!
  3. def change
  4. add_reference :users, :created_by_application, foreign_key: { to_table: 'oauth_applications', on_delete: :nullify }, index: false
  5. add_index :users, :created_by_application_id, algorithm: :concurrently
  6. end
  7. end