a11yist/db/migrate/20241101015725_add_notes_to_pages.rb

6 lines
113 B
Ruby
Raw Permalink Normal View History

2024-11-01 03:26:46 +01:00
class AddNotesToPages < ActiveRecord::Migration[7.2]
def change
add_column :pages, :notes, :text
end
end