forgeplus/db/migrate/20210514024444_create_faqs.rb

11 lines
174 B
Ruby

class CreateFaqs < ActiveRecord::Migration[5.2]
def change
create_table :faqs do |t|
t.string :question
t.string :url
t.timestamps
end
end
end