This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
|
class AddLedgerComment < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :ledgers, :comment, :string, { :limit => 64 }
|
|
end
|
|
|
|
def self.down
|
|
drop_column :ledgers, :comment
|
|
end
|
|
end
|