1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00
BikeShed-1/db/migrate/20130209022259_task_list.rb
2013-02-08 22:10:52 -05:00

10 lines
231 B
Ruby

class TaskList < ActiveRecord::Migration
def change
create_table :task_lists do |t|
t.integer "item_id", :null => false
t.string "item_type", :null => false
t.string "name", :null => false
end
end
end