Files
adamantium/config/db/migrate/20230626090009_add_book_posts.rb
2024-08-05 19:00:09 +10:00

11 lines
211 B
Ruby

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