Class: CreateTodoroReminders

Inherits:
Object
  • Object
show all
Defined in:
lib/generators/todoro/templates/create_todoro_reminders.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
10
11
# File 'lib/generators/todoro/templates/create_todoro_reminders.rb', line 2

def change
  create_table :todoro_reminders do |t|
    t.references :task, null: false, foreign_key: { to_table: :todoro_tasks }
    t.datetime :remind_at, null: false  # Enforce remind_at is mandatory



    t.timestamps
  end
end