Sha256: b9881a95aab33de7909ada0517499e2b9efb81db770bc29ed8872c7d41da9517

Contents?: true

Size: 1.45 KB

Versions: 12

Compression:

Stored size: 1.45 KB

Contents

ActiveRecord::Schema.define do
  create_table :groups, :force => true do |t|
    t.column :order_col, :string
    t.timestamps null: true
  end
  create_table :test_tables, :force => true do |t|
    t.column :author_name, :string
    t.integer :group_id
    t.timestamps null: true
  end
  create_table :items, :force => true do |t|
    t.column :itemno, :string
    t.column :sizen, :integer
    t.column :company, :integer
    t.timestamps null: true
  end
  create_table :assemblies, :force => true do |t|
    t.string :name
    t.timestamps null: true
  end

  create_table :parts, :force => true do |t|
    t.string :part_number
    t.timestamps null: true
  end

  create_table :assemblies_parts, :force => true, id: false do |t|
    t.belongs_to :assembly
    t.belongs_to :part
  end

  create_table :students, :force => true do |t|
    t.string :name
    t.integer :student_id
    t.timestamps null: true
  end

  create_table :courses, :force => true do |t|
    t.string :name
    t.integer :course_id
    t.timestamps null: true
  end

  create_table :students_related_courses,:force => true, id: false do |t|
    t.belongs_to :the_other_student
    t.belongs_to :the_other_course
  end

  create_table :products,:force => true do |t|
    t.string :name
    t.timestamps null: true
  end

  create_table :products_related_products,:force => true, id: false do |t|
    t.belongs_to :product
    t.belongs_to :related_product
  end
  #add_foreign_key :test_tables, :groups
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
activerecord_bulkoperation-0.2.3 test/schema/generic_schema.rb
activerecord_bulkoperation-0.2.2 test/schema/generic_schema.rb
activerecord_bulkoperation-0.2.1 test/schema/generic_schema.rb
activerecord_bulkoperation-0.2.0 test/schema/generic_schema.rb
activerecord_bulkoperation-0.1.0 test/schema/generic_schema.rb
activerecord_bulkoperation-0.0.8 test/schema/generic_schema.rb
activerecord_bulkoperation-0.0.7 test/schema/generic_schema.rb
activerecord_bulkoperation-0.0.6 test/schema/generic_schema.rb
activerecord_bulkoperation-0.0.5 test/schema/generic_schema.rb
activerecord_bulkoperation-0.0.4 test/schema/generic_schema.rb
activerecord_bulkoperation-0.0.3 test/schema/generic_schema.rb
activerecord_bulkoperation-0.0.2 test/schema/generic_schema.rb