Sha256: 30b9a773b7d82528ba4f62089fb488f9cdfd9287e2cfa6f355d2a1ca7912396a
Contents?: true
Size: 393 Bytes
Versions: 2
Compression:
Stored size: 393 Bytes
Contents
class CreateUserLoginHistories < ActiveRecord::Migration def change create_table :user_login_histories do |t| t.integer :user_id, null: false, index: true t.string :ip_address, null: false, limit: 64 t.boolean :successful t.string :message, limit: 200 t.timestamps null: false end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
barkest_core-1.5.4.0 | db/migrate/20160617172833_create_user_login_histories.rb |
barkest_core-1.5.3.0 | db/migrate/20160617172833_create_user_login_histories.rb |