Ruby on Rails Thursday, October 30, 2014

 
This is the ruby code of the migration.

(class CreateUsers < ActiveRecord::Migration
  def up
    create_table :users do |t|
    t.string "first_name",:limit =>25
    t.string "last_name", :limit =>50
    t.string "email",:default => "",:null => false
    t.string "password",:limit => 40
      t.timestamps
    end
    def down
      drop_table :users
    end
end
end)
The terminal command 

 (rake db:migrate VERSION=0)

But i am still able to see the users table after running that terminal command. It says reverting CreateUsers but does not drop the table.
Any help?

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/b69adc44-4f70-490e-a79e-8f1b5d957c8b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment