diff --git a/db/migrate/20151006220031_add_timestamps_to_group_categories.rb b/db/migrate/20151006220031_add_timestamps_to_group_categories.rb new file mode 100644 index 00000000000..2bd39a0c443 --- /dev/null +++ b/db/migrate/20151006220031_add_timestamps_to_group_categories.rb @@ -0,0 +1,9 @@ +class AddTimestampsToGroupCategories < ActiveRecord::Migration + tag :predeploy + + def change + change_table(:group_categories) do |t| + t.timestamps + end + end +end