Sha256: 18157d62b636963d23e6122face2b31a9981cc52b0dab946415ab2f54e3413bf

Contents?: true

Size: 1.92 KB

Versions: 8

Compression:

Stored size: 1.92 KB

Contents

ActiveRecord::Schema.define(:version => 1) do

  create_table "accounts", :force => true do |t|
  end

  create_table "students", :force => true do |t|
    t.integer  "account_id"
    t.integer  "legacy_id"
    t.string   "name"
    t.string   "house"
    t.string   "pet_type"
    t.integer  "pet_id"
    t.index    "name", :unique => true
    t.index    ["account_id", "legacy_id"], :unique => true
  end

  create_table "parents", :force => true do |t|
    t.integer  "account_id"
    t.integer  "student_id"
    t.integer  "legacy_id"
    t.string   "name"
    t.index    ["account_id", "legacy_id"], :unique => true
  end

  create_table "locations", :force => true do |t|
    t.integer  "account_id"
    t.integer  "legacy_id"
    t.string   "slug"
    t.index    ["account_id", "legacy_id"], :unique => true
  end

  create_table "students_subjects", :force => true do |t|
    t.integer  "student_id"
    t.integer  "subject_id"
  end

  create_table "subjects", :force => true do |t|
    t.integer  "account_id"
    t.integer  "legacy_id"
    t.string   "name"
    t.index    ["account_id", "legacy_id"], :unique => true
  end

  create_table "grades", :force => true do |t|
    t.integer  "account_id"
    t.integer  "subject_id"
    t.integer  "student_id"
    t.integer  "legacy_id"
    t.string   "value"
    t.index    ["account_id", "legacy_id"], :unique => true
  end

  create_table "owls", :force => true do |t|
    t.integer  "account_id"
    t.integer  "legacy_id"
    t.string   "name"
    t.index    ["account_id", "legacy_id"], :unique => true
  end

  create_table "cats", :force => true do |t|
    t.integer  "account_id"
    t.integer  "legacy_id"
    t.string   "name"
    t.index    ["account_id", "legacy_id"], :unique => true
  end

  create_table "abilities", :force => true do |t|
    t.string   "pet_type"
    t.integer  "pet_id"
    t.integer  "legacy_id"
    t.string   "name"
    t.index    "legacy_id", :unique => true
  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
abstract_importer-1.6.0 test/support/schema.rb
abstract_importer-1.5.6 test/support/schema.rb
abstract_importer-1.5.5 test/support/schema.rb
abstract_importer-1.5.4 test/support/schema.rb
abstract_importer-1.5.3 test/support/schema.rb
abstract_importer-1.5.2 test/support/schema.rb
abstract_importer-1.5.1 test/support/schema.rb
abstract_importer-1.5.0 test/support/schema.rb