Sha256: 571673828a15d4adea5646f24a2577c71a22132b1acbf9914d8c40b49abe393d
Contents?: true
Size: 351 Bytes
Versions: 1
Compression:
Stored size: 351 Bytes
Contents
require_relative 'base' class Tables::ActionLogs < Tables::Base def self.table(migration) create_table migration do |t| t.string :action_type t.text :action_params t.text :action_result t.bigint :action_id t.index :action_id, name: 'index_action_action_log_id' t.timestamps end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
forcast-0.0.110 | lib/forcast/migrations/rule_engine/action_logs.rb |