mmsc_app/db/migrate/20190902110809_create_s_brands.rb
Nicolas Bally a6aa1f6074 Initial
2020-05-25 11:40:11 +02:00

14 lines
267 B
Ruby

class CreateSBrands < ActiveRecord::Migration[6.0]
def change
create_table :s_brands do |t|
t.boolean :enabled, :default => true
t.string :code
t.string :name
t.text :description
t.string :url
t.timestamps
end
end
end