mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
11 lines
294 B
Ruby
11 lines
294 B
Ruby
class AddEmptyFieldToAsset < ActiveRecord::Migration[4.2]
|
|
def up
|
|
add_column :assets, :file_present, :boolean, default: false
|
|
Asset.update_all(file_present: true)
|
|
change_column_null :assets, :file_present, false
|
|
end
|
|
|
|
def down
|
|
remove_column :assets, :file_present
|
|
end
|
|
end
|