12 lines
199 B
Ruby
12 lines
199 B
Ruby
# frozen_string_literal: true
|
|
|
|
ROM::SQL.migration do
|
|
change do
|
|
drop_table :bookmarks
|
|
alter_table :posts do
|
|
add_column :url, :text
|
|
add_column :post_type, :text
|
|
end
|
|
end
|
|
end
|