30 lines
818 B
Ruby
30 lines
818 B
Ruby
require 'rails_helper'
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: world_participants
|
|
#
|
|
# id :integer not null, primary key
|
|
# final_result :integer
|
|
# name :string not null
|
|
# qualifier_result :integer
|
|
# round :string not null
|
|
# score :integer
|
|
# semifinal_result :integer
|
|
# username :string not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# world_country_id :integer not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_world_participants_on_world_country_id (world_country_id)
|
|
#
|
|
# Foreign Keys
|
|
#
|
|
# world_country_id (world_country_id => world_countries.id)
|
|
#
|
|
RSpec.describe WorldParticipant, type: :model do
|
|
pending "add some examples to (or delete) #{__FILE__}"
|
|
end
|