Sha256: cae2c0f5a2f84d79fc0a9d4c94e6b9adb946c6f8ba0c161aff369b0cbdc9999d

Contents?: true

Size: 382 Bytes

Versions: 1

Compression:

Stored size: 382 Bytes

Contents

ActiveRecord::Schema.define(:version => 1) do
  create_table :brands, :force => true do |t|
    t.column :name, :string
  end

  create_table :products, :force => true do |t|
    t.column :name, :string
    t.column :product_category_id, :integer
    t.column :brand_id, :integer
  end

  create_table :product_categories, :force => true do |t|
    t.column :name, :string
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hario-0.1.0 test/schema.rb