discourse/db/migrate/20130226015336_add_github_u...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
441 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddGithubUserInfo < ActiveRecord::Migration[4.2]
def change
create_table :github_user_infos do |t|
t.integer :user_id, null: false
t.string :screen_name, null: false
t.integer :github_user_id, null: false
2017-08-07 11:48:36 -04:00
t.timestamps null: false
end
add_index :github_user_infos, [:github_user_id], unique: true
add_index :github_user_infos, [:user_id], unique: true
end
end