Sha256: 14c6c0c731c6fcd057a4908615e98e98256baa4f10ba17d30ef648a584c2b59b

Contents?: true

Size: 234 Bytes

Versions: 6

Compression:

Stored size: 234 Bytes

Contents

class CreateUsers < ActiveRecord::Migration
  def self.up
    create_table :users do |t|
      t.string :login
      t.string :password
      t.string :crypted_password
    end
  end
  
  def self.down
    drop_table :users
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
encrypted_attributes-0.1.0 test/app_root/db/migrate/001_create_users.rb
encrypted_attributes-0.3.0 test/app_root/db/migrate/001_create_users.rb
encrypted_attributes-0.2.0 test/app_root/db/migrate/001_create_users.rb
encrypted_attributes-0.1.3 test/app_root/db/migrate/001_create_users.rb
encrypted_attributes-0.1.1 test/app_root/db/migrate/001_create_users.rb
encrypted_attributes-0.1.2 test/app_root/db/migrate/001_create_users.rb