Class: CreateTimelinesEvents

Inherits:
Object
  • Object
show all
Defined in:
lib/generators/timelines/install/templates/create_timelines_events.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/generators/timelines/install/templates/create_timelines_events.rb', line 2

def change
  create_table :timelines_events, id: :uuid do |t|
    t.references :actor, type: :uuid, polymorphic: true
    t.references :resource, type: :uuid, polymorphic: true
    t.string :event
    t.timestamps
  end
end