File: 20211213122101_drop_open_id_authentication_tables.rb

package info (click to toggle)
redmine 6.0.6%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 20,104 kB
  • sloc: ruby: 116,318; javascript: 12,885; sh: 460; perl: 303; python: 166; makefile: 30
file content (18 lines) | stat: -rw-r--r-- 480 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class DropOpenIdAuthenticationTables < ActiveRecord::Migration[6.1]
  def change
    drop_table :open_id_authentication_associations do |t|
      t.integer "issued"
      t.integer "lifetime"
      t.string "handle"
      t.string "assoc_type"
      t.binary "server_url"
      t.binary "secret"
    end

    drop_table :open_id_authentication_nonces do |t|
      t.integer "timestamp", null: false
      t.string "server_url"
      t.string "salt", null: false
    end
  end
end