parent
10660b5a5c
commit
86868be70e
@ -1,6 +1,7 @@
|
|||||||
class HackSet < ApplicationRecord
|
class HackSet < ApplicationRecord
|
||||||
validates :input, presence: { message: "测试集输入不能为空" }
|
#validates :input, presence: { message: "测试集输入不能为空" }
|
||||||
validates :output, presence: { message: "测试集输出不能为空" }
|
validates :output, presence: { message: "测试集输出不能为空" }
|
||||||
|
validates_uniqueness_of :input, scope: [:hack_id, :input], message: "多个测试集的输入不能相同"
|
||||||
# 编程题测试集
|
# 编程题测试集
|
||||||
belongs_to :hack
|
belongs_to :hack
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in new issue