Sha256: 73afea8a7666377586be2b9a389ca0e5876aab999bcfe223c4ef1e3b89e70c43
Contents?: true
Size: 458 Bytes
Versions: 32
Compression:
Stored size: 458 Bytes
Contents
class CreateMeritActions < ActiveRecord::Migration def self.up create_table :merit_actions do |t| t.integer :user_id # source t.string :action_method t.integer :action_value t.boolean :had_errors t.string :target_model t.integer :target_id t.boolean :processed, :default => false t.string :log, :default => nil t.timestamps end end def self.down drop_table :merit_actions end end
Version data entries
32 entries across 29 versions & 1 rubygems