Sha256: cc86ec65371c11982e2a45841883e78df31e6293268df8968feb16422e6ac1c1

Contents?: true

Size: 798 Bytes

Versions: 7

Compression:

Stored size: 798 Bytes

Contents

ActiveRecord::Base.establish_connection(:adapter => "sqlite3", :database => ":memory:")
#ActiveRecord::Base.configurations = true

ActiveRecord::Base.logger = TEST_LOGGER




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

  create_table :entries do |t|
    t.integer :group_id
    t.string :name
    t.string :category
    t.string :access_level
    t.string :pet
    t.boolean :disabled, :null => false, :default => false
    t.boolean :confirmed, :null => false, :default => false
    t.date :shipping_date
    t.timestamps
  end

  create_table :groups do |t|
    t.string :name
    t.float :rating
    t.timestamps
  end

  class ::Entry < ActiveRecord::Base
    belongs_to :group
  end
  class ::Group < ActiveRecord::Base
    has_many :entries
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
datagrid-1.5.8 spec/support/active_record.rb
datagrid-1.5.7 spec/support/active_record.rb
datagrid-1.5.6 spec/support/active_record.rb
datagrid-1.5.5 spec/support/active_record.rb
datagrid-1.5.4 spec/support/active_record.rb
datagrid-1.5.3 spec/support/active_record.rb
datagrid-1.5.2 spec/support/active_record.rb