mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
9 lines
189 B
Ruby
9 lines
189 B
Ruby
class CreateSettings < ActiveRecord::Migration
|
|
def change
|
|
create_table :settings do |t|
|
|
t.integer :setting_group_id
|
|
t.string :code
|
|
t.string :value
|
|
end
|
|
end
|
|
end
|