Sha256: ac102d4d5c9f123dd08d5b5c09dd4136354922d182c6ce4ac292c1fb47c55284

Contents?: true

Size: 252 Bytes

Versions: 7

Compression:

Stored size: 252 Bytes

Contents

class CreateProducts < ActiveRecord::Migration[5.0]
  def change
    create_table :products do |t|
      t.string :sku
      t.string :title
      t.decimal :price
      t.boolean :active
      t.text :description

      t.timestamps
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
audited_views-0.0.7 spec/dummy/db/migrate/20170507023018_create_products.rb
audited_views-0.0.6 spec/dummy/db/migrate/20170507023018_create_products.rb
audited_views-0.0.5 spec/dummy/db/migrate/20170507023018_create_products.rb
audited_views-0.0.4 spec/dummy/db/migrate/20170507023018_create_products.rb
audited_views-0.0.3 spec/dummy/db/migrate/20170507023018_create_products.rb
audited_views-0.0.2 spec/dummy/db/migrate/20170507023018_create_products.rb
audited_views-0.0.1 spec/dummy/db/migrate/20170507023018_create_products.rb