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