Updated

db/migrate / 20150618233548_add_validated_at_to_signatures.rb

A
8 lines of codes
1 methods
3.5 complexity/method
1 churn
3.54 complexity
0 duplications
class AddValidatedAtToSignatures < ActiveRecord::Migration
  1. AddValidatedAtToSignatures has no descriptive comment
def change change_table :signatures do |t|
  1. AddValidatedAtToSignatures#change has the variable name 't'
t.datetime :validated_at
  1. AddValidatedAtToSignatures#change refers to 't' more than self (maybe move it to another class?) Locations: 0 1
t.index :validated_at
  1. AddValidatedAtToSignatures#change refers to 't' more than self (maybe move it to another class?) Locations: 0 1
end end end