fix:提交到整个项目能跑通,有几个接口不标准
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
|
||||
INSERT INTO breeding_method (auth_user_id, id, abbreviation, name, description) VALUES ('anonymousUser', 'breeding_method1', 'MB', 'Male Backcross', 'Backcross to recover a specific gene.');
|
||||
INSERT INTO breeding_method (auth_user_id, id, abbreviation, name, description) VALUES ('anonymousUser', 'breeding_method2', 'S', 'Self', 'Self pollination');
|
||||
INSERT INTO breeding_method (auth_user_id, id, abbreviation, name, description) VALUES ('anonymousUser', 'breeding_method1', 'MB', 'Male Backcross', 'Backcross to recover a specific gene.')
|
||||
ON CONFLICT (id) DO UPDATE SET abbreviation = EXCLUDED.abbreviation, name = EXCLUDED.name, description = EXCLUDED.description;
|
||||
INSERT INTO breeding_method (auth_user_id, id, abbreviation, name, description) VALUES ('anonymousUser', 'breeding_method2', 'S', 'Self', 'Self pollination')
|
||||
ON CONFLICT (id) DO UPDATE SET abbreviation = EXCLUDED.abbreviation, name = EXCLUDED.name, description = EXCLUDED.description;
|
||||
|
||||
Reference in New Issue
Block a user