wearefine/fae

View on GitHub
db/migrate/20140809222030_add_user_table.rb

Summary

Maintainability
A
1 hr
Test Coverage
Missing top-level class documentation comment.
class AddUserTable < ActiveRecord::Migration[4.2]
Method has too many lines. [30/10]
Assignment Branch Condition size for change is too high. [29/15]
Method `change` has 30 lines of code (exceeds 25 allowed). Consider refactoring.
def change
create_table(:fae_users) do |t|
## Database authenticatable
Use the new Ruby 1.9 hash syntax.
Prefer single-quoted strings when you don't need string interpolation or special symbols.
t.string :email, :null => false, :default => ""
Use the new Ruby 1.9 hash syntax.
Prefer single-quoted strings when you don't need string interpolation or special symbols.
t.string :encrypted_password, :null => false, :default => ""
 
## Recoverable
t.string :reset_password_token
t.datetime :reset_password_sent_at
 
## Rememberable
t.datetime :remember_created_at
 
## Trackable
Use the new Ruby 1.9 hash syntax.
t.integer :sign_in_count, :default => 0, :null => false
t.datetime :current_sign_in_at
t.datetime :last_sign_in_at
t.string :current_sign_in_ip
t.string :last_sign_in_ip
 
## Confirmable
t.string :confirmation_token
t.datetime :confirmed_at
t.datetime :confirmation_sent_at
t.string :unconfirmed_email # Only if using reconfirmable
 
## Lockable
Use the new Ruby 1.9 hash syntax.
Line is too long. [108/80]
t.integer :failed_attempts, :default => 0, :null => false # Only if lock strategy is :failed_attempts
t.string :unlock_token # Only if unlock strategy is :email or :both
t.datetime :locked_at
 
# non-devise attributes
t.string :first_name
t.string :last_name
t.integer :role_id
Use the new Ruby 1.9 hash syntax.
t.boolean :active, :default => true, :null => false
t.string :language
 
t.timestamps
end
 
Use the new Ruby 1.9 hash syntax.
add_index :fae_users, :email, :unique => true
Use the new Ruby 1.9 hash syntax.
add_index :fae_users, :reset_password_token, :unique => true
Use the new Ruby 1.9 hash syntax.
add_index :fae_users, :confirmation_token, :unique => true
Use the new Ruby 1.9 hash syntax.
add_index :fae_users, :unlock_token, :unique => true
add_index :fae_users, :role_id
end
end