Files
gitlink-forgeplus/app/models/gitlink_competition_apply.rb
2024-06-20 14:10:51 +08:00

42 lines
1.3 KiB
Ruby

# == Schema Information
#
# Table name: gitlink_competition_applies
#
# id :integer not null, primary key
# competition_id :integer
# competition_identifier :string(255)
# team_id :integer
# team_name :string(255)
# school_name :string(255)
# educoder_login :string(255)
# nickname :string(255)
# phone :string(255)
# email :string(255)
# identity :string(255)
# role :string(255)
# created_at :datetime not null
# updated_at :datetime not null
#
# == Schema Information
#
# Table name: gitlink_competition_applies
#
# id :integer not null, primary key
# competition_id :integer
# competition_identifier :string(255)
# team_id :integer
# team_name :string(255)
# school_name :string(255)
# login :string(255)
# nickname :string(255)
# phone :string(255)
# identity :string(255)
# role :string(255)
# created_at :datetime not null
# updated_at :datetime not null
#
class GitlinkCompetitionApply < ApplicationRecord
end