forked from Trustie/forgeplus
22 lines
769 B
Ruby
22 lines
769 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: badges
|
|
#
|
|
# id :integer not null, primary key
|
|
# user_id :integer
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# many_projects :integer default("0")
|
|
# manyParisesProject :integer default("0")
|
|
# parises_project :integer default("0")
|
|
# manyWatchersProject :integer default("0")
|
|
# watchers_project :integer default("0")
|
|
# many_fans :integer default("0")
|
|
# many_pr :integer default("0")
|
|
# many_issue :integer default("0")
|
|
# active_in_week :integer default("0")
|
|
#
|
|
|
|
class Badge < ApplicationRecord
|
|
end
|