Class: CreateLastNotifications

Inherits:
Object
  • Object
show all
Defined in:
lib/generators/french_toast/templates/create_last_notifications.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/generators/french_toast/templates/create_last_notifications.rb', line 2

def change
  create_table :last_notifications do |t|
    t.timestamps

    t.string :session, index: true
    t.string :data
  end
end