ubicloud/migrate/20250927_remove_postgres_resource_version.rb
shikharbhardwaj 6122988bd4 :migrate: Remove PostgresResource version
Signed-off-by: shikharbhardwaj <8502456+shikharbhardwaj@users.noreply.github.com>
2025-10-03 00:23:12 +02:00

9 lines
147 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:postgres_resource) do
drop_column :version
end
end
end