tinyforms/db/migrate/20200405121558_create_forms.rb
2020-04-28 01:40:06 +02:00

16 lines
299 B
Ruby

# frozen_string_literal: true
class CreateForms < ActiveRecord::Migration[6.0]
def change
create_table :forms do |t|
t.integer :user_id
t.string :google_spreadsheet_id
t.string :title
t.string :token
t.string :thank_you_url
t.timestamps
end
end
end