mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-04-04 05:33:22 -04:00
9 lines
187 B
Ruby
9 lines
187 B
Ruby
class CreateBikeConditions < ActiveRecord::Migration
|
|
def change
|
|
create_table :bike_conditions do |t|
|
|
t.string "condition", :null => false
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|