Sha256: ce32088ad78e4ed0c1116e10a0e30dc9c684451927c8a787aec6904587b6e088
Contents?: true
Size: 347 Bytes
Versions: 23
Compression:
Stored size: 347 Bytes
Contents
class CreateUserCredentials < ActiveRecord::Migration def up create_table :user_credentials do |t| t.references :user t.string :service t.string :login t.binary :password t.binary :password_key t.binary :password_iv t.timestamps end end def down drop_table :user_credentials end end
Version data entries
23 entries across 23 versions & 1 rubygems