Sha256: 82a3a07d302a0ecd6f421c02c3e407eb9fe893cadafdd1202e529acb016d0b7f

Contents?: true

Size: 868 Bytes

Versions: 25

Compression:

Stored size: 868 Bytes

Contents

class CreateSocialStreamOauth2Server < ActiveRecord::Migration
  def change
    create_table :oauth2_tokens do |t|
      t.string :type

      t.integer :user_id
      t.integer :site_id
      t.string  :token

      t.string  :redirect_uri
      t.integer :refresh_token_id

      t.timestamps
      t.datetime :expires_at
    end

    add_index "oauth2_tokens", :user_id, :name => "index_oauth2_tokens_on_user_id"
    add_index "oauth2_tokens", :site_id, :name => "index_oauth2_tokens_on_site_id"
    add_index "oauth2_tokens", :token,   :name => "index_oauth2_tokens_on_token"
    add_index "oauth2_tokens", :refresh_token_id, :name => "index_oauth2_tokens_on_refresh_token_id"

    add_foreign_key "oauth2_tokens", "sites", :name => "index_oauth2_tokens_on_site_id"
    add_foreign_key "oauth2_tokens", "users", :name => "index_oauth2_tokens_on_user_id"
  end
end

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
social_stream-2.2.2 oauth2_server/db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-oauth2_server-2.2.2 db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-2.2.1 oauth2_server/db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-oauth2_server-2.2.1 db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-2.2.0 oauth2_server/db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-oauth2_server-2.2.0 db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-2.1.1 oauth2_server/db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-oauth2_server-2.1.1 db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-2.1.0 oauth2_server/db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-oauth2_server-2.1.0 db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-2.0.4 oauth2_server/db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-oauth2_server-2.0.3 db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-2.0.3 oauth2_server/db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-oauth2_server-2.0.2 db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-2.0.2 oauth2_server/db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-oauth2_server-2.0.1 db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-2.0.1 oauth2_server/db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-2.0.0 oauth2_server/db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-oauth2_server-2.0.0 db/migrate/20130115102300_create_social_stream_oauth2_server.rb
social_stream-2.0.0.beta3 oauth2_server/db/migrate/20130115102300_create_social_stream_oauth2_server.rb