We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 14f4977 + 6b34f7a commit 2a163aeCopy full SHA for 2a163ae
db/migrate/008_change_default_bugfix_on_view_customizes.rb
@@ -1,6 +1,10 @@
1
class ChangeDefaultBugfixOnViewCustomizes < ActiveRecord::CompatibleLegacyMigration.migration_class
2
- def change
+ def up
3
change_column_default :view_customizes, :path_pattern, ""
4
change_column_default :view_customizes, :comments, ""
5
end
6
+
7
+ def down
8
+ # Leave the default values unchanged
9
+ end
10
0 commit comments