15 lines
269 B
Ruby
15 lines
269 B
Ruby
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
|