account is always FK from now on

This commit is contained in:
Priec
2026-07-29 15:26:33 +02:00
parent 76a5f76194
commit a02aba3832
6 changed files with 12 additions and 2 deletions

View File

@@ -93,6 +93,7 @@ impl CreateTableForm {
.map(|linked_table_name| TableLink {
linked_table_name,
required: true,
account_value_column: String::new(),
})
.collect::<Vec<_>>();
links.extend(
@@ -101,6 +102,7 @@ impl CreateTableForm {
.map(|linked_table_name| TableLink {
linked_table_name,
required: false,
account_value_column: String::new(),
}),
);