mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-04-30 19:52:03 +08:00
15 lines
441 B
Ruby
15 lines
441 B
Ruby
# 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
|
|
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
|