9 lines
295 B
Ruby
9 lines
295 B
Ruby
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
|