class CreateAppConfig

Public Instance Methods

change() click to toggle source
# File lib/osso/db/migrate/20200826201852_create_app_config.rb, line 2
def change
  create_table :app_configs, id: :uuid do |t|
    t.string :contact_email
    t.string :logo_url
    t.string :name
    
    t.timestamps
  end
end