我使用这样的命令:
administrator@ubuntu:~/demo$ rails generate migration Testabc test123:string
终端响应:
invoke active_record
create db/migrate/20120204124219_testabc.rb
但在文件中的内容是:
class Testabc < ActiveRecord::Migration
def up
end
def down
end
end
那么,我的表格和字符串列在哪里?