diaspora_federation/test/dummy/db/migrate/20160202221606_create_entity.rb
2016-02-03 00:47:21 +01:00

11 lines
294 B
Ruby

class CreateEntity < ActiveRecord::Migration
def change
create_table :entities do |t|
t.belongs_to :author, class_name: "Person", null: false
t.string :guid, null: false
t.string :entity_type, null: false
t.timestamps null: false
end
end
end