Tagged Questions
The schema.rb tag has no wiki summary.
19
votes
3answers
4k views
What is the preferred way to manage schema.rb in git?
I don't want to add schema.rb to .gitignore, because I want to be able to load a new database schema from that file. However, keeping it checked in is causing all sorts of spurious conflicts that are ...
4
votes
3answers
410 views
Should I flatten Rails migrations?
It's possible to replace db/migrate/* with the contents of db/schema.rb, so that you only have one migration step.
Do any of you ever do this? Why?
1
vote
1answer
238 views
Capistrano deploy and schema.rb
I'm a newbie in Rails and I'm trying to deploy my first project.
I'm using rails 3, ruby 1.8.7, Passanger, Mysql and Git
I followed a lot of tutorials to learn about deploying with capistrano and ...
1
vote
4answers
557 views
Rails: I update migratation file then run db:migrate, but my schema isn't updating
Im trying to add an extra field to one of my tables.
Ive added the field in the migration file (under db\migrate)
then ran 'rake db:migrate' which ran without troubles and my text editor even told me ...
0
votes
1answer
72 views
Viewing the contents of tables in schema.rb in rails
I'm sorry if this is a stupid question, but in my schema.rb I have several tables like
create_table "messages", :force => true do |t|
t.integer "user_id", :null => false
...
0
votes
2answers
510 views
How to make Rails generate 'schema.rb' with bigint support for MySQL?
I am using Rails 3.0.5. I am using MySQL as a database storage. I have a model in which one of the columns needs to be BIGINT. I am using the following in my create migration file:
t.column ...