BikeBikeBike/db/migrate/20140209012408_create_workshop_streams.rb
2014-03-09 14:43:33 -06:00

12 lines
210 B
Ruby

class CreateWorkshopStreams < ActiveRecord::Migration
def change
create_table :workshop_streams do |t|
t.string :name
t.string :slug
t.string :info
t.timestamps
end
end
end