11 lines
326 B
Ruby
11 lines
326 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddAirtableSupport < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :forms, :airtable_app_key_ciphertext, :string
|
|
add_column :forms, :airtable_api_key_ciphertext, :string
|
|
add_column :forms, :airtable_table, :string
|
|
add_column :forms, :backend_name, :string
|
|
end
|
|
end
|