Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
7489 Lượt xem

how to avoid duplicate record using constrains?

i have created two records and applied constrains

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi,

Using unique constraint of SQL, you can avoid duplication of record. For example, if you want to restrict the user to create record which has same name, you can apply constraint like below:

_sql_constraints = [
     ('name_uniq', 'unique(name)', 'Name must be unique!'),
 ]

You can also apply more than 1 field in constraint. You can refer constraint of hr.job object from hr.py file of HR module.

Hope this may help you.

Ảnh đại diện
Huỷ bỏ