I use the command like this:
administrator@ubuntu:~/demo$ rails generate migration Testabc test123:string
and the terminal respond:
invoke active_record
create db/migrate/20120204124219_testabc.rb
But in the file`s content is:
class Testabc < ActiveRecord::Migration
def up
end
def down
end
end
So, where is my table and the string column?