Sha256: d02b6de962df0539ec4a5142b70c26a1ec2206aaed5045292e32e21c981940e7
Contents?: true
Size: 616 Bytes
Versions: 20
Compression:
Stored size: 616 Bytes
Contents
class CreateExternalServicesApiActions < ActiveRecord::Migration def change create_table :external_services_api_actions do |t| t.references :initiator, null: false, polymorphic: true, index: { name: 'esaa_on_initiator_type_and_initiator_id' } t.string :type, null: false t.string :name t.string :method, null: false t.string :path, null: false t.text :data t.string :signature t.string :queue, null: false t.text :options t.timestamp :created_at t.timestamp :processed_at end end end
Version data entries
20 entries across 20 versions & 1 rubygems