Sha256: 1f338d136b66d5290122eb24e7cf67500e533bd19d469a684124eebf1ddb2d43

Contents?: true

Size: 629 Bytes

Versions: 8

Compression:

Stored size: 629 Bytes

Contents

class CreateUsers < ActiveRecord::Migration
  def self.up
    create_table "users", :force => true do |t|
      t.string   "login",                       :limit => 64, :default => "",        :null => false
      t.string   "email",                                     :default => "",        :null => false
      t.string   "crypted_password",            :limit => 64, :default => "",        :null => false
      t.string   "salt",                        :limit => 64, :default => "",        :null => false
      t.datetime "created_at"
      t.datetime "updated_at"
    end
  end

  def self.down
    drop_table :users
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
has_many_polymorphs-2.11 test/integration/app/db/migrate/001_create_users.rb
ultrasphinx-1.5.3 test/integration/app/db/migrate/001_create_users.rb
ultrasphinx-1.6.7 test/integration/app/db/migrate/001_create_users.rb
ultrasphinx-1.11 test/integration/app/db/migrate/001_create_users.rb
ultrasphinx-1.7 test/integration/app/db/migrate/001_create_users.rb
ultrasphinx-1.9 test/integration/app/db/migrate/001_create_users.rb
ultrasphinx-1.8 test/integration/app/db/migrate/001_create_users.rb
ultrasphinx-1.6 test/integration/app/db/migrate/001_create_users.rb