6 lines
115 B
Ruby
6 lines
115 B
Ruby
|
|
class AddTextToUpdates < ActiveRecord::Migration[8.1]
|
||
|
|
def change
|
||
|
|
add_column :updates, :body, :text
|
||
|
|
end
|
||
|
|
end
|