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

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

9 lines
174 B
Ruby

class CreateScope < ActiveRecord::Migration
def change
create_table :scopes do |t|
t.primary_key :name, :string
t.timestamps null: false
end
end
end