Sha256: ed406690dafad9d76fe0a40ff5e2d607622ff67ecdf3f6cdb6357964bcc7f2e4

Contents?: true

Size: 332 Bytes

Versions: 1

Compression:

Stored size: 332 Bytes

Contents

ActiveRecord::Schema.define do
  create_table :users, force: true do |t|
    t.string :name
    t.string :tags
    t.integer :jsonb_id
    t.integer :array_store_id
    t.integer :hstore_id
    t.timestamps null: true
  end
end

class User < ActiveRecord::Base
  belongs_to :jsonb
  belongs_to :array_store
  belongs_to :hstore
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pgrel-0.3.0 spec/support/user.rb