Sha256: 5027ba014525779044d630c39f59a4a3f84392551100e4ca0d17b100c320d9fb

Contents?: true

Size: 470 Bytes

Versions: 2

Compression:

Stored size: 470 Bytes

Contents

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

  create_table :products, :force => true do |t|
    t.column :name, :string
    t.column :category_id, :integer
    t.column :brand_id, :integer
    t.column :hidden_column, :integer
    t.timestamps null: false
  end

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
hario-0.3.2 test/schema.rb
hario-0.3.1 test/schema.rb