This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
grindable/db/migrate/003_add_ledger_comment.rb

10 lines
192 B
Ruby

class AddLedgerComment < ActiveRecord::Migration
def self.up
add_column :ledgers, :comment, :string, { :limit => 64 }
end
def self.down
drop_column :ledgers, :comment
end
end