Class: CreateAppConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/osso/db/migrate/20200826201852_create_app_config.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
10
# 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