You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/db/migrate/20130725122407_create_bids.rb

14 lines
247 B

class CreateBids < ActiveRecord::Migration
def change
create_table :bids do |t|
t.string :name
t.integer :budget
t.integer :author_id
t.date :deadline
t.string :description
t.timestamps
end
end
end