mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
11 lines
174 B
Ruby
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
|