10 lines
204 B
Ruby
10 lines
204 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:postgres_timeline) do
|
|
add_column :cached_earliest_backup_at, :timestamptz, null: true, default: nil
|
|
end
|
|
end
|
|
end
|