Class: AddArLockTable

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

Class Method Summary collapse

Class Method Details

.downObject



12
13
14
# File 'lib/generators/ar_lock/migration/templates/migration.rb', line 12

def self.down
  drop_table "<%= options[:ar_lock_table_name] %>"
end

.upObject



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

def self.up
  create_table "<%= options[:ar_lock_table_name] %>", :force => true do |t|
    t.string :name, :null => false
    t.string :value

    t.timestamps
  end
  add_index "<%= options[:ar_lock_table_name] %>", :name, :unique => true
end