This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20130226015336_add_github_user_info.rb
2023-01-09 11:59:41 +00:00

16 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