Files
adamantium/db/migrate/20230101113513_add_slug_to_posts.rb
2023-01-27 22:55:09 +11:00

10 lines
152 B
Ruby

# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table :posts do
add_column :slug, :text, null: false
end
end
end