Sha256: 19dc4248c1684c43b10641e65d530546ba9a1de5da1c10ea11910ea3065d9997
Contents?: true
Size: 307 Bytes
Versions: 20
Compression:
Stored size: 307 Bytes
Contents
class CreateAdmins < ActiveRecord::Migration def change create_table :admins do |t| t.string :email, null: false t.string :password_digest, null: false t.string :password_salt, null: false t.timestamps null: false end add_index :admins, :email, unique: true end end
Version data entries
20 entries across 20 versions & 1 rubygems