Add timestamps to Budget::Heading & Budget::Group

This commit is contained in:
Shaun Schwartz
2018-04-12 14:30:09 -07:00
committed by Javi Martín
parent bb627a7117
commit 04b1bc9fca
3 changed files with 27 additions and 13 deletions

View File

@@ -0,0 +1,5 @@
class AddTimestampsToBudgetGroups < ActiveRecord::Migration[5.0]
def change
add_timestamps :budget_groups, null: true
end
end

View File

@@ -0,0 +1,5 @@
class AddTimestampsToBudgetHeadings < ActiveRecord::Migration[5.0]
def change
add_timestamps :budget_headings, null: true
end
end