16 lines
299 B
Ruby
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
|