📜  如果不存在则创建表 rails - Ruby 代码示例

📅  最后修改于: 2022-03-11 15:04:49.644000             🧑  作者: Mango

代码示例1
create_table :repo_subscriptions, if_not_exists: true do |t|
  t.string      :user_name
  t.string      :repo_name
  t.timestamps
end