11 lines
214 B
Ruby
11 lines
214 B
Ruby
class CreateSpecificPreferences < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :specific_preferences do |t|
|
|
t.string :key
|
|
t.string :value
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|