Skip to content

Commit

Permalink
awesomefoundation#269 adding database fields
Browse files Browse the repository at this point in the history
  • Loading branch information
divideby0 committed Jul 7, 2017
1 parent eb66ebe commit 1201042
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions db/migrate/20170707001034_add_chapter_project_review_dates.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
class AddChapterProjectReviewDates < ActiveRecord::Migration
def up
add_column :chapters, :project_review_start, :date
add_column :chapters, :project_review_end, :date
end

def down
remove_column :chapters, :project_review_start
remove_column :chapters, :project_review_end
end
end

0 comments on commit 1201042

Please sign in to comment.