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/006_ledger_post_date.rb

10 lines
176 B
Ruby

class LedgerPostDate < ActiveRecord::Migration
def self.up
add_column :ledgers, :post_date, :date
end
def self.down
remove_column :ledgers, :post_date
end
end