Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Help with 1st migration, want to rename fields and make them not nulls

My current schema looks like:

create_table "users", :force => true do |t|
    t.string   "username"
    t.string   "firstname"
    t.string   "lastname"
    t.datetime "loggedin_at"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.integer  `user_status`
end

I want to rename username to user_name, and make all the fields not null (they are currently nullable).

How would I do this? Do I create a migration file using rails generate, and then have to tweak it manually? How so?

like image 873
Blankman Avatar asked Nov 14 '22 06:11

Blankman


1 Answers

It can help if you specify the Rails version number.

Before 3.0, it is:

Rails: How can I rename a database column in a Ruby on Rails migration?

If it is 3.0 or later, then you can look at the Migration documentation, such as rails generate instead of script/generate.

like image 161
nonopolarity Avatar answered Dec 29 '22 05:12

nonopolarity