Displaying 1 result from an estimated 1 matches for "createsuppliers".
2010 Feb 23
2
Problem: The command "rake db:create:all" crashes
...:
Rails 2.3.5
MySQL 5.1.44
WindowsXP-Pro/SP3
Following Noel Rappin''s book, Pro RoR, I successfully got past the
point of creating my first scaffold:
ruby script/generate scaffold supplier nickname:string qbname:string
That produced the migration, 20100221011210_create_suppliers.rb:
class CreateSuppliers < ActiveRecord::Migration
def self.up
create_table :suppliers do |t|
t.string :nickname
t.string :qbname
t.timestamps
end
end
def self.down
drop_table :suppliers
end
end
Then I ran "rake db:create:all". The Command Window display for this
is:...