Sha256: 6830bc6de2722253fcf012c8a10596aa3f587c3f46009924154a1631e58fd99f
Contents?: true
Size: 634 Bytes
Versions: 236
Compression:
Stored size: 634 Bytes
Contents
class CreateComeeCoreClientOrders < ActiveRecord::Migration[7.0] def change create_table :comee_core_client_orders do |t| t.references :order_source, null: false, index: {name: "order_source_on_ccco_indx"}, foreign_key: {to_table: :comee_core_order_sources} t.string :url, null: false t.boolean :processed, null: false, default: true t.references :client, null: false, index: {name: "client_on_ccco_indx"}, foreign_key: {to_table: :comee_core_clients} t.timestamps end end end
Version data entries
236 entries across 236 versions & 1 rubygems