Sha256: 2e21c3b53de1666a8446b9258b6c2be712bcab5f2ca3f780f0f1eb00f5cb4e37

Contents?: true

Size: 374 Bytes

Versions: 7

Compression:

Stored size: 374 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 :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

7 entries across 7 versions & 2 rubygems

Version Path
querrel-1.4.0 test/setup/schema.rb
querrel-1.3.0 test/setup/schema.rb
querrel-1.2.0 test/setup/schema.rb
querrel-1.1.0 test/setup/schema.rb
querrel-1.0.0 test/setup/schema.rb
hario-0.2.0 test/schema.rb
hario-0.1.1 test/schema.rb