Sha256: 1821d9943992cfdae008f74dec1fb44c970fa564b82d1386439b3f077f7eb433
Contents?: true
Size: 524 Bytes
Versions: 92
Compression:
Stored size: 524 Bytes
Contents
class CreateOrganizations < ActiveRecord::Migration def change create_table :organizations do |t| t.string :provider t.string :uid t.string :name t.string :tenant t.string :oauth_provider t.string :oauth_uid t.string :oauth_name t.string :oauth_token t.string :refresh_token t.string :instance_url t.string :synchronized_entities t.timestamps null: false end add_index :organizations, [:uid, :tenant], name: 'orga_uid_index' end end
Version data entries
92 entries across 92 versions & 1 rubygems