summaryrefslogtreecommitdiff
path: root/db/migrate/20140428223907_create_remote_usernames.rb
blob: e265985636bdc78a9ef5575e1dfabe2bccec7094 (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateRemoteUsernames < ActiveRecord::Migration
  def change
    create_table :remote_usernames do |t|
      t.references :game, index: true
      t.references :user, index: true
      t.text :json_value

      t.timestamps
    end
  end
end