Sha256: 74d6840d2fee8ea698910a703927646f2f93415a81845903a5316266ff9b3a15

Contents?: true

Size: 383 Bytes

Versions: 16

Compression:

Stored size: 383 Bytes

Contents

class CreateAuthorizations < ActiveRecord::Migration
  def change
    create_table :authorizations do |t|
      t.string :name, null: false
      t.integer :provider_id
      t.string :scope
      t.string :access_token, length: 1024
      t.string :refresh_token
      t.string :secret
      t.integer :expires_in
      t.timestamp :expires_at

      t.timestamps
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
houston-core-0.9.2 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.9.1 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.9.0 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.9.0.rc1 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.8.4 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.8.3 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.8.2 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.8.1 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.8.0 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.8.0.pre2 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.8.0.pre db/migrate/20160420000616_create_authorizations.rb
houston-core-0.7.0 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.7.0.beta4 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.7.0.beta3 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.7.0.beta2 db/migrate/20160420000616_create_authorizations.rb
houston-core-0.7.0.beta db/migrate/20160420000616_create_authorizations.rb