Sha256: c6f9122de0eee238a18d95b839fda30cb9a7ec9128f06ab57cc6aeaf64798592

Contents?: true

Size: 232 Bytes

Versions: 2

Compression:

Stored size: 232 Bytes

Contents

ActiveRecord::Base.connection.create_table(:orders, force: true, id: :uuid) do |t|
  t.text :body
  t.string :title

  t.timestamps null: false
end

class Order < ActiveRecord::Base
  second_level_cache

  has_many :order_items
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
second_level_cache-2.3.3 test/model/order.rb
second_level_cache-2.3.2 test/model/order.rb