mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-03-01 01:03:23 -05:00
10 lines
231 B
Ruby
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
|