Skip to content

Commit 95d84b7

Browse files
committed
Added missing columns to team members
1 parent 75ad613 commit 95d84b7

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

db/schema.rb

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -464,11 +464,14 @@
464464
end
465465

466466
create_table "teams_members", :force => true do |t|
467-
t.integer "team_id", :null => false
468-
t.integer "user_id", :null => false
469-
t.datetime "created_at", :null => false
470-
t.datetime "updated_at", :null => false
471-
t.string "state", :default => "pending"
467+
t.integer "team_id", :null => false
468+
t.integer "user_id", :null => false
469+
t.datetime "created_at", :null => false
470+
t.datetime "updated_at", :null => false
471+
t.string "state", :default => "pending"
472+
t.float "score_cache"
473+
t.string "team_banner"
474+
t.string "team_avatar"
472475
end
473476

474477
create_table "tokens", :force => true do |t|

0 commit comments

Comments
 (0)