public
Description: RESTful Rails app for storing credit cards
Clone URL: git://github.com/joevandyk/monkeycharger.git
monkeycharger / db / migrate / 004_rename_authorization_column.rb
100644 9 lines (7 sloc) 0.168 kb
1
2
3
4
5
6
7
8
9
class RenameAuthorizationColumn < ActiveRecord::Migration
  def self.up
    rename_column :captures, :authorization, :authorization_id
  end
 
  def self.down
  end
end