vote up 0 vote down star

What is the terminal command, or where is a good resource to get them, to alter a table. And, do I need to re run the $rake db:migrate after I do this? I am running RoR on Snow Leopard. Last question, can I make an already created column non-null.

UPDATE: figured out how to alter, just need to know if I need to rake db:migrate after alter.

flag

74% accept rate
Change your question's title when you change the questions so totally and drastically! And btw, one question per question (you have three here, though your title reflects but one -- the one you don't CARE about anymore!-) is much better Stack-Overflow behavior. – Alex Martelli Oct 29 at 2:38
Sorry, new to this. – bgadoci Oct 29 at 2:41
If you used Rails Migrations I answered the remaining question also – jitter Oct 30 at 7:03

1 Answer

vote up 1 vote down check

good resource to get them, to alter a table

Check these to get a grasp at how migrations work

Rails Migrations Cheatsheet

Railsguides: Migrations


@run rake db:migrate: yes


@created to non-null: yes (Check 7.1 add_column and 7.2 change_column in the first link

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.