class CreateTrakaChanges

Public Class Methods

down() click to toggle source
# File lib/generators/traka/templates/migration.rb, line 12
def self.down
  drop_table :traka_changes
end
up() click to toggle source
# File lib/generators/traka/templates/migration.rb, line 2
def self.up
  create_table :traka_changes, :force => true do |t|
    t.string :klass
    t.string :uuid
    t.string :action_type
    t.integer :version
    t.timestamps
  end
end