You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/db/migrate/20120225124004_create_users.rb

16 lines
338 B
Ruby

class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :provider, :null => false
t.string :uid, :null => false
t.string :email
t.string :name
t.string :avatar_url
t.timestamps
end
add_index :users, [ :provider, :uid ], :unique => true
end
end