Add dynamic pages to main menu

This commit is contained in:
2024-01-01 17:10:30 +11:00
parent 689fc7cff6
commit 5f6e3fd86f
7 changed files with 944 additions and 13 deletions

View File

@@ -0,0 +1,11 @@
# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table :pages do
add_column :main_menu, :boolean, default: false
add_column :light_colour, :text
add_column :dark_colour, :text
end
end
end