Sha256: 875dbe06f88494e8169334183e9f3f46ffd4fde98d73ca5d1d3a0c5762a51dba

Contents?: true

Size: 403 Bytes

Versions: 5

Compression:

Stored size: 403 Bytes

Contents

# This migration comes from defcon (originally 20141008173352)
class CreateDefconAdminUsers < ActiveRecord::Migration
  def change
    create_table :defcon_admin_users do |t|
      t.string :username
      t.string :password_digest
      t.boolean :read_only
      t.integer :attempts
      t.integer :max_attempts
      t.boolean :master
      t.integer :priority

      t.timestamps
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
arcadex-1.3.1 test/test_app/db/migrate/20141016225562_create_defcon_admin_users.defcon.rb
arcadex-1.3.0 test/test_app/db/migrate/20141016225562_create_defcon_admin_users.defcon.rb
arcadex-1.2.3 test/test_app/db/migrate/20141016225562_create_defcon_admin_users.defcon.rb
arcadex-1.2.1 test/test_app/db/migrate/20141016225562_create_defcon_admin_users.defcon.rb
arcadex-1.2.0 test/test_app/db/migrate/20141016225562_create_defcon_admin_users.defcon.rb