16 lines
428 B
Ruby
16 lines
428 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class CreateAlertsServiceData < ActiveRecord::Migration[5.2]
|
||
|
DOWNTIME = false
|
||
|
|
||
|
def change
|
||
|
create_table :alerts_service_data do |t|
|
||
|
t.references :service, type: :integer, index: true, null: false,
|
||
|
foreign_key: { on_delete: :cascade }
|
||
|
t.timestamps_with_timezone
|
||
|
t.string :encrypted_token, limit: 255
|
||
|
t.string :encrypted_token_iv, limit: 255
|
||
|
end
|
||
|
end
|
||
|
end
|