diaspora_federation/test/dummy/db/migrate/20150614014411_create_people.rb
Benjamin Neff f0591a745b add basic webfinger stuf (WIP)
and:
- add configure method to set some configs
- write rdoc
2015-06-14 22:13:38 +02:00

12 lines
348 B
Ruby

class CreatePeople < ActiveRecord::Migration
def change
create_table :people do |t|
t.string "guid", null: false
t.text "url", null: false
t.string "diaspora_handle", null: false
t.text "serialized_public_key", null: false
t.timestamps null: false
end
end
end