foodsoft/db/migrate/20130615073715_create_periodic_task_groups.rb
2020-09-05 14:40:11 +02:00

13 lines
268 B
Ruby

class CreatePeriodicTaskGroups < ActiveRecord::Migration[4.2]
def change
create_table :periodic_task_groups do |t|
t.date :next_task_date
t.timestamps
end
change_table :tasks do |t|
t.references :periodic_task_group
end
end
end