Sha256: 28db4f292b26dbe68de441e626bb974bec3caaf1fbdabf05177313ed045d2a8a

Contents?: true

Size: 419 Bytes

Versions: 7

Compression:

Stored size: 419 Bytes

Contents

# -*- coding: utf-8 -*-
class CreateUsersWithoutComment < ActiveRecord::Migration
  def self.up
    create_table :users do |t|
      t.string :login
      t.string :email
      t.string :crypted_password
      t.string :password_salt
      t.string :persistence_token
      t.string :single_access_token
      t.string :perishable_token
      t.timestamps
    end
  end

  def self.down
    drop_table :users
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
schema_comments-0.2.0 spec/migrations/valid/008_create_users_without_comment.rb
schema_comments-0.2.0.alpha5 spec/migrations/valid/008_create_users_without_comment.rb
schema_comments-0.2.0.alpha4 spec/migrations/valid/008_create_users_without_comment.rb
schema_comments-0.2.0.alpha3 spec/migrations/valid/008_create_users_without_comment.rb
schema_comments-0.2.0.alpha2 spec/migrations/valid/008_create_users_without_comment.rb
schema_comments-0.2.0.alpha1 spec/migrations/valid/008_create_users_without_comment.rb
schema_comments-0.1.4 spec/migrations/valid/008_create_users_without_comment.rb