diaspora/db/migrate/20150801074555_create_pairwise_pseudonymous_identifiers.rb
theworldbright 99d6d7b3e7 Add pairwise pseudonymous identifier support
Squashed commits:

[a182de7] Fix pronto/travis errors
2016-01-04 16:49:51 +09:00

11 lines
302 B
Ruby

class CreatePairwisePseudonymousIdentifiers < ActiveRecord::Migration
def change
create_table :ppid do |t|
t.belongs_to :o_auth_application, index: true
t.belongs_to :user, index: true
t.primary_key :guid, :string, limit: 32
t.string :sector_identifier
end
end
end