Skip to content

Commit e44f0f4

Browse files
authored
Merge pull request #184 from code0-tech/183-make-unique-flow-type-setting-enum
UniquenessScope for FlowTypeSetting
2 parents 9d05b15 + b83f609 commit e44f0f4

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

proto/shared/shared.flow_definition.proto

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,14 @@ message FlowType {
2424
}
2525

2626
message FlowTypeSetting {
27+
enum UniquenessScope {
28+
UNKNOWN = 0;
29+
NONE = 1;
30+
PROJECT = 2;
31+
}
32+
2733
string identifier = 1;
28-
bool unique = 2;
34+
UniquenessScope unique = 2;
2935
string data_type_identifier = 3;
3036
optional shared.Value default_value = 4;
3137
repeated shared.Translation name = 5;

0 commit comments

Comments
 (0)