How to create schema in sql

女生的网名这么多〃 提交于 2019-11-29 04:59:57

问题


As per http://edgeguides.rubyonrails.org/configuring.html and this post I have this in application.rb

config.active_record.schema_format = :sql

However, it's still creating db/schema.rb (even after I delete it) and more importantly it's not creating the schema in sql when I run "rake db:migrate". Anyone know what I'm doing wrong? I'm on Rails 3.1 pre.


回答1:


Well, this could be a rails bug, but you can always generate your db structure with this:

rake db:structure:dump

This is going to generate an "#{Rails.env}.sql" file for you with your database structure in SQL.



来源:https://stackoverflow.com/questions/7034977/how-to-create-schema-in-sql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!