Skip to content

Commit

Permalink
Merge branch 'master' into users
Browse files Browse the repository at this point in the history
  • Loading branch information
arsduo committed Sep 11, 2012
2 parents fc10e88 + 2609a09 commit 1f79367
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 30 deletions.
1 change: 1 addition & 0 deletions Gemfile
Expand Up @@ -8,6 +8,7 @@ gem "omniauth"
gem "omniauth-github"
gem "omniauth-facebook"
gem "pg"
gem "gh"

# Gems used only for assets and not required
# in production environments by default.
Expand Down
3 changes: 3 additions & 0 deletions app/models/repo.rb
@@ -0,0 +1,3 @@
class Repo < ActiveRecord::Base
attr_accessible :full_name, :name, :user_id
end
30 changes: 0 additions & 30 deletions config/database_example.yml

This file was deleted.

11 changes: 11 additions & 0 deletions db/migrate/20120911125344_create_repos.rb
@@ -0,0 +1,11 @@
class CreateRepos < ActiveRecord::Migration
def change
create_table :repos do |t|
t.integer :user_id
t.string :full_name
t.string :name

t.timestamps
end
end
end

0 comments on commit 1f79367

Please sign in to comment.