Skip to content

Commit

Permalink
add a migration file for statesman
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeta committed Jul 3, 2016
1 parent d02575d commit b1a6d15
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
class AddMostRecentToInterLibraryLoanTransitions < ActiveRecord::Migration
def up
add_column :inter_library_loan_transitions, :most_recent, :boolean, null: true
end

def down
remove_column :inter_library_loan_transitions, :most_recent
end
end

0 comments on commit b1a6d15

Please sign in to comment.