2013-05-15 15:19:53 +02:00
|
|
|
class ChangeAttachmentDefault < ActiveRecord::Migration
|
|
|
|
|
def up
|
2014-03-17 17:41:31 +05:30
|
|
|
change_column_default(:event_attachments, :public, true)
|
2013-05-15 15:19:53 +02:00
|
|
|
end
|
|
|
|
|
def down
|
2014-03-17 17:41:31 +05:30
|
|
|
change_column_default(:event_attachments, :public, true)
|
2013-05-15 15:19:53 +02:00
|
|
|
end
|
|
|
|
|
end
|