Add support for Airtable
This commit is contained in:
8
db/migrate/20200413152532_add_airtable_support.rb
Normal file
8
db/migrate/20200413152532_add_airtable_support.rb
Normal 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
|
||||
@@ -10,7 +10,7 @@
|
||||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 2020_04_13_101920) do
|
||||
ActiveRecord::Schema.define(version: 2020_04_13_152532) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
@@ -57,6 +57,10 @@ ActiveRecord::Schema.define(version: 2020_04_13_101920) do
|
||||
t.string "thank_you_url"
|
||||
t.datetime "created_at", precision: 6, null: false
|
||||
t.datetime "updated_at", precision: 6, null: false
|
||||
t.string "airtable_app_key_ciphertext"
|
||||
t.string "airtable_api_key_ciphertext"
|
||||
t.string "airtable_table"
|
||||
t.string "backend_name"
|
||||
end
|
||||
|
||||
create_table "submissions", force: :cascade do |t|
|
||||
|
||||
Reference in New Issue
Block a user