Sha256: 240b7016fe181a30a3d9d64da073dd48462e5daa35608e65c899f2518db187a0

Contents?: true

Size: 216 Bytes

Versions: 11

Compression:

Stored size: 216 Bytes

Contents

class CreateUsers < ActiveRecord::Migration
  def change
    create_table :users do |t|
      t.string :exuid, limit: 32, null: false

      t.timestamps
    end

    add_index :users, :exuid, unique: true
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
authpwn_rails-0.16.2 lib/authpwn_rails/generators/templates/001_create_users.rb
authpwn_rails-0.16.1 lib/authpwn_rails/generators/templates/001_create_users.rb
authpwn_rails-0.16.0 lib/authpwn_rails/generators/templates/001_create_users.rb
authpwn_rails-0.15.3 lib/authpwn_rails/generators/templates/001_create_users.rb
authpwn_rails-0.15.2 lib/authpwn_rails/generators/templates/001_create_users.rb
authpwn_rails-0.15.1 lib/authpwn_rails/generators/templates/001_create_users.rb
authpwn_rails-0.15.0 lib/authpwn_rails/generators/templates/001_create_users.rb
authpwn_rails-0.14.3 lib/authpwn_rails/generators/templates/001_create_users.rb
authpwn_rails-0.14.2 lib/authpwn_rails/generators/templates/001_create_users.rb
authpwn_rails-0.14.1 lib/authpwn_rails/generators/templates/001_create_users.rb
authpwn_rails-0.14.0 lib/authpwn_rails/generators/templates/001_create_users.rb