6 lines
113 B
Ruby
6 lines
113 B
Ruby
|
|
class AddNotesToPages < ActiveRecord::Migration[7.2]
|
||
|
|
def change
|
||
|
|
add_column :pages, :notes, :text
|
||
|
|
end
|
||
|
|
end
|