forgeplus/app/models/badge.rb

17 lines
515 B
Ruby

# == Schema Information
#
# Table name: badges
#
# id :integer not null, primary key
# user_id :integer
# watcher :boolean default("0")
# pullrequest :boolean default("0")
# many_fans :boolean default("0")
# amazing_project_owner :boolean default("0")
# created_at :datetime not null
# updated_at :datetime not null
#
class Badge < ApplicationRecord
end