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.
20 lines
430 B
20 lines
430 B
11 years ago
|
class CreateBikeTable < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :bikes do |t|
|
||
|
t.string :entry_date
|
||
|
t.string :brand
|
||
|
t.string :model
|
||
|
t.string :type
|
||
|
t.string :color
|
||
|
t.boolean :freecyclery
|
||
|
t.boolean :sale
|
||
|
t.string :serial_number
|
||
|
t.text :notes
|
||
|
t.text :tag_info
|
||
|
t.string :repaired_by
|
||
|
t.string :completion_date
|
||
|
t.string :price
|
||
|
end
|
||
|
end
|
||
|
end
|