Files
ubicloud/migrate/20231207_add_pg_blob_str_id.rb
2023-12-07 18:59:32 +01:00

10 lines
173 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:postgres_timeline) do
add_column :blob_storage_id, :uuid, null: true
end
end
end