9 lines
182 B
Ruby
9 lines
182 B
Ruby
# typed: true
|
|
class CreateParentKeyOnSstEntries < ActiveRecord::Migration[7.0]
|
|
def change
|
|
change_table :log_store_sst_entries do |t|
|
|
t.binary :base_key
|
|
end
|
|
end
|
|
end
|