1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-03-01 01:03:23 -05:00
BikeShed-1/db/migrate/20130209022259_task_list.rb

10 lines
231 B
Ruby
Raw Normal View History

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