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

10 lines
158 B
Ruby

# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table :posts do
add_column :is_read, :bool, default: false
end
end
end