a11yist/db/migrate/20241101015725_add_notes_to_pages.rb
david 42c077f6ab
Some checks failed
/ Run tests (push) Failing after 1m9s
/ Run system tests (push) Failing after 1m13s
/ Build, push and deploy image (push) Has been skipped
Gui improvements, ordering
2024-11-01 03:26:46 +01:00

5 lines
113 B
Ruby

class AddNotesToPages < ActiveRecord::Migration[7.2]
def change
add_column :pages, :notes, :text
end
end