Sha256: a6a0d2608cd19d6a34be94fceb70079889a83c18e5bf321a93082e23a04f4df9
Contents?: true
Size: 1 KB
Versions: 3
Compression:
Stored size: 1 KB
Contents
class DeviseInvitableAddTo<%= table_name.camelize %> < ActiveRecord::Migration def up change_table :<%= table_name %> do |t| t.string :invitation_token t.datetime :invitation_created_at t.datetime :invitation_sent_at t.datetime :invitation_accepted_at t.integer :invitation_limit t.references :invited_by, :polymorphic => true t.index :invitation_token, :unique => true # for invitable t.index :invited_by_id end # And allow null encrypted_password and password_salt: change_column_null :<%= table_name %>, :encrypted_password, true <% if class_name.constantize.columns_hash['password_salt'] -%> change_column_null :<%= table_name %>, :password_salt, true <% end -%> end def down change_table :<%= table_name %> do |t| t.remove_references :invited_by, :polymorphic => true t.remove :invitation_limit, :invitation_sent_at, :invitation_accepted_at, :invitation_token, :invitation_created_at end end end
Version data entries
3 entries across 3 versions & 1 rubygems