-  id             => { type => 'integer', not_null => 1, sequence => 'id' },
-  account_number => { type => 'varchar', length => 100 },
-  bank_code      => { type => 'varchar', length => 100 },
-  iban           => { type => 'varchar', length => 100 },
-  bic            => { type => 'varchar', length => 100 },
-  bank           => { type => 'text' },
-  chart_id       => { type => 'integer', not_null => 1 },
+  account_number                  => { type => 'varchar', length => 100 },
+  bank                            => { type => 'text' },
+  bank_account_id                 => { type => 'varchar' },
+  bank_code                       => { type => 'varchar', length => 100 },
+  bic                             => { type => 'varchar', length => 100 },
+  chart_id                        => { type => 'integer', not_null => 1 },
+  iban                            => { type => 'varchar', length => 100 },
+  id                              => { type => 'integer', not_null => 1, sequence => 'id' },
+  name                            => { type => 'text' },
+  obsolete                        => { type => 'boolean', default => 'false', not_null => 1 },
+  reconciliation_starting_balance => { type => 'numeric', precision => 15, scale => 5 },
+  reconciliation_starting_date    => { type => 'date' },
+  sortkey                         => { type => 'integer', not_null => 1 },
+  use_for_qrbill                  => { type => 'boolean', default => 'false', not_null => 1 },
+  use_for_zugferd                 => { type => 'boolean', default => 'false', not_null => 1 },