Sha256: 96549e0da4e02e7815feeaf2ff3a21ab791fc69eca631598a1b1bfa460034739
Contents?: true
Size: 896 Bytes
Versions: 1
Compression:
Stored size: 896 Bytes
Contents
class CreateUnidomShoppingCarts < ActiveRecord::Migration[6.0] def change create_table :unidom_shopping_carts, id: :uuid do |t| t.references :shopper, type: :uuid, null: false, polymorphic: { null: false, default: '', limit: 200 } t.references :shop, type: :uuid, null: false, polymorphic: { null: false, default: '', limit: 200 } t.column :state, 'char(1)', null: false, default: Unidom::Common::STATE t.datetime :opened_at, null: false, default: Unidom::Common::OPENED_AT t.datetime :closed_at, null: false, default: Unidom::Common::CLOSED_AT t.boolean :defunct, null: false, default: false t.jsonb :notation, null: false, default: {} t.timestamps null: false end add_index :unidom_shopping_carts, :shopper_id add_index :unidom_shopping_carts, :shop_id end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
unidom-shopping-2.0.1 | db/migrate/20020501000000_create_unidom_shopping_carts.rb |