6 lines
147 B
Ruby
6 lines
147 B
Ruby
|
|
class AddDescriptionToMaterialRelease < ActiveRecord::Migration[6.0]
|
||
|
|
def change
|
||
|
|
add_column :material_releases, :description, :text
|
||
|
|
end
|
||
|
|
end
|