6 lines
152 B
Ruby
6 lines
152 B
Ruby
class RenameEntropyConfigurationsToEntropies < ActiveRecord::Migration[8.2]
|
|
def change
|
|
rename_table :entropy_configurations, :entropies
|
|
end
|
|
end
|