mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
478 B
15 lines
478 B
class CreateExportLocations < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :export_locations do |t|
|
|
t.string :name, null: false
|
|
t.boolean :default_location, null: false, default: false
|
|
t.string :authorization_token
|
|
t.string :api_base_url, null: false
|
|
# t.string extra_params, null: false, default: '{}'
|
|
t.string :templates_endpoint
|
|
# t.string other_export_type_endpoints_maybe_one_day
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|