Class: ActsAsLockableMigration

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/acts_as_lockable/migration/templates/active_record/migration.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
# File 'lib/generators/acts_as_lockable/migration/templates/active_record/migration.rb', line 2

def change
  create_table :locks do |t|
    t.integer :locked_id
    t.string :locked_type
  end
  add_index :locks, :locked_id
end