Sha256: 369e8e094c38cb269c2a94ebf34b0eeefeee6fa832f87057e43c3f80ba63ceb3
Contents?: true
Size: 415 Bytes
Versions: 4
Compression:
Stored size: 415 Bytes
Contents
ActiveRecord::Schema.define(version: 1) do create_table :books, force: true do |t| t.string :name t.integer :author_id t.integer :price end create_table :authors, force: true do |t| t.string :name end create_table :categories, force: true do |t| t.string :name end create_table :book_categories, force: true do |t| t.integer :book_id t.integer :category_id end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
active_export-0.4.0 | spec/rails/schema.rb |
active_export-0.3.0 | spec/rails/schema.rb |
active_export-0.2.0 | spec/rails/schema.rb |
active_export-0.1.0 | spec/rails/schema.rb |