mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-04-04 05:33:22 -04: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
|