Sha256: 28761266c41eaceb290d44845ebd7fd1dfa6e9ff2a2cd5b6ad6b1c7c5a0677b0

Contents?: true

Size: 1.04 KB

Versions: 9

Compression:

Stored size: 1.04 KB

Contents

ActiveRecord::Schema.define :version => 0 do
  create_table :twitter_auth_users, :force => true do |t|
    t.string :twitter_id
    t.string :login
    
    # OAuth fields
    t.string :access_token
    t.string :access_secret

    # Basic fields
    t.binary :crypted_password
    t.string :salt

    # Remember token fields
    t.string :remember_token
    t.datetime :remember_token_expires_at

    # This information is automatically kept
    # in-sync at each login of the user. You
    # may remove any/all of these columns.
    t.string :name
    t.string :location
    t.string :description
    t.string :profile_image_url
    t.string :url
    t.boolean :protected
    t.string :profile_background_color
    t.string :profile_sidebar_fill_color
    t.string :profile_link_color
    t.string :profile_sidebar_border_color
    t.string :profile_text_color
    t.integer :friends_count
    t.integer :statuses_count
    t.integer :followers_count
    t.integer :favourites_count
    t.integer :utc_offset
    t.string :time_zone

    t.timestamps
  end
end

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
mbleigh-twitter-auth-0.1.20 spec/schema.rb
mbleigh-twitter-auth-0.1.21 spec/schema.rb
mbleigh-twitter-auth-0.1.22 spec/schema.rb
twitter-auth-with-mongo-mapper-0.1.1 spec/schema.rb
twitter-auth-with-mongo-mapper-0.1.0 spec/schema.rb
twitter-auth-with-mongo-mapper-0.0.9 spec/schema.rb
twitter-auth-0.1.22 spec/schema.rb
twitter-auth-0.1.20 spec/schema.rb
twitter-auth-0.1.21 spec/schema.rb