mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
13 lines
No EOL
414 B
Ruby
13 lines
No EOL
414 B
Ruby
class AddGithubUserInfo < ActiveRecord::Migration
|
|
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
|
|
end
|
|
|
|
add_index :github_user_infos, [:github_user_id], :unique => true
|
|
add_index :github_user_infos, [:user_id], :unique => true
|
|
end
|
|
end |