We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed957b1 commit f123761Copy full SHA for f123761
crates/vespertide-core/src/schema/table.rs
@@ -90,8 +90,6 @@ impl TableDef {
90
}
91
92
// Add primary key constraint if any columns have inline pk and no existing pk constraint.
93
- // Inline 선언이든 테이블 제약이든 의미를 동일하게 맞추기 위해, 항상 테이블 제약으로 승격해 둔다.
94
- // (기존에 테이블 PK가 있으면 중복 추가하지 않음)
95
if !pk_columns.is_empty() {
96
let has_pk_constraint = constraints
97
.iter()
0 commit comments