Files
adamantium/db/migrate/20230219064027_add_location_to_posts.rb
2023-02-19 19:05:57 +11:00

10 lines
157 B
Ruby

# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table :posts do
add_column :location, :text, default: nil
end
end
end