Add support for Airtable

This commit is contained in:
2020-04-13 22:59:46 +02:00
parent 80fe5f4220
commit edf6884647
12 changed files with 179 additions and 60 deletions

View File

@@ -0,0 +1,8 @@
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