Sha256: 65a6971c30fc8daba4cbc8011c4c22f03c8375dfb868d85d85195fbc0d883088
Contents?: true
Size: 494 Bytes
Versions: 1
Compression:
Stored size: 494 Bytes
Contents
class DeviseCreateUserConstraintsAndIndexes < Neo4j::Migrations::Base def change add_index :<%= label_string %>, :email, force: true add_index :<%= label_string %>, :remember_token, force: true add_index :<%= label_string %>, :reset_password_token, force: true # add_index :<%= label_string %>, :confirmation_token, force: true # add_index :<%= label_string %>, :unlock_token, force: true # add_index :<%= label_string %>, :authentication_token, force: true end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
devise-neo4j-2.1.1 | lib/generators/neo4j/templates/migration.rb.erb |