2014-08-06 14:47:47 +02:00
|
|
|
# Generate tables for active_admin users and associated auth mechanisms
|
2013-11-14 17:07:48 +01:00
|
|
|
class DeviseCreateAdminUsers < ActiveRecord::Migration
|
|
|
|
def migrate(direction)
|
|
|
|
super
|
|
|
|
# Create a default user
|
2016-11-02 21:53:24 +01:00
|
|
|
return unless direction == :up
|
2018-09-15 15:05:21 +02:00
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
AdminUser.create!(email: 'admin@example.com', password: 'password',
|
2016-11-02 21:53:24 +01:00
|
|
|
password_confirmation: 'password')
|
2013-11-14 17:07:48 +01:00
|
|
|
end
|
|
|
|
|
2014-08-15 19:28:51 +02:00
|
|
|
# rubocop:disable Metrics/MethodLength
|
2013-11-14 17:07:48 +01:00
|
|
|
def change
|
|
|
|
create_table(:admin_users) do |t|
|
|
|
|
## Database authenticatable
|
2014-08-06 14:47:47 +02:00
|
|
|
t.string :email, null: false, default: ''
|
|
|
|
t.string :encrypted_password, null: false, default: ''
|
2013-11-14 17:07:48 +01:00
|
|
|
|
|
|
|
## Recoverable
|
2014-08-06 14:47:47 +02:00
|
|
|
t.string :reset_password_token
|
2013-11-14 17:07:48 +01:00
|
|
|
t.datetime :reset_password_sent_at
|
|
|
|
|
|
|
|
## Rememberable
|
|
|
|
t.datetime :remember_created_at
|
|
|
|
|
|
|
|
## Trackable
|
2014-08-06 14:47:47 +02:00
|
|
|
t.integer :sign_in_count, default: 0, null: false
|
2013-11-14 17:07:48 +01:00
|
|
|
t.datetime :current_sign_in_at
|
|
|
|
t.datetime :last_sign_in_at
|
2014-08-06 14:47:47 +02:00
|
|
|
t.string :current_sign_in_ip
|
|
|
|
t.string :last_sign_in_ip
|
2013-11-14 17:07:48 +01:00
|
|
|
|
|
|
|
## Confirmable
|
|
|
|
# t.string :confirmation_token
|
|
|
|
# t.datetime :confirmed_at
|
|
|
|
# t.datetime :confirmation_sent_at
|
|
|
|
# t.string :unconfirmed_email # Only if using reconfirmable
|
|
|
|
|
|
|
|
## Lockable
|
2014-08-06 14:47:47 +02:00
|
|
|
# Only if lock strategy is :failed_attempts
|
|
|
|
# t.integer :failed_attempts, :default => 0, :null => false
|
2013-11-14 17:07:48 +01:00
|
|
|
# t.string :unlock_token # Only if unlock strategy is :email or :both
|
|
|
|
# t.datetime :locked_at
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
add_index :admin_users, :email, unique: true
|
|
|
|
add_index :admin_users, :reset_password_token, unique: true
|
2013-11-14 17:07:48 +01:00
|
|
|
# add_index :admin_users, :confirmation_token, :unique => true
|
|
|
|
# add_index :admin_users, :unlock_token, :unique => true
|
|
|
|
end
|
2018-01-01 17:52:33 +01:00
|
|
|
# rubocop:enable Metrics/MethodLength
|
2013-11-14 17:07:48 +01:00
|
|
|
end
|