mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 09:27:19 +02:00
7 lines
144 B
Ruby
7 lines
144 B
Ruby
class CreateSettingGroups < ActiveRecord::Migration
|
|
def change
|
|
create_table :setting_groups do |t|
|
|
t.string :code
|
|
end
|
|
end
|
|
end
|