summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-08-08 02:50:31 +0200
committererdgeist <erdgeist@erdgeist.org>2026-08-08 02:50:31 +0200
commit5203b80f47786b8adc169e80d89cd69159c44b62 (patch)
tree5f8fde8a97e13a3cce8aea400ea2d81e1b3dfcb5 /db
parent1a037ac6fab34c5f65ed0f37ed603b88e7b02fd1 (diff)
Add external url to pages
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20260808000022_add_external_url_to_pages.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20260808000022_add_external_url_to_pages.rb b/db/migrate/20260808000022_add_external_url_to_pages.rb
new file mode 100644
index 00000000..d3122aee
--- /dev/null
+++ b/db/migrate/20260808000022_add_external_url_to_pages.rb
@@ -0,0 +1,5 @@
1class AddExternalUrlToPages < ActiveRecord::Migration[8.1]
2 def change
3 add_column :pages, :external_url, :string
4 end
5end