006_drop_policy.sql 325 B

12345
  1. -- The overdraft/balance policy is no longer a separate column. The single
  2. -- balance constraint (debit must not exceed credit) now lives in the account
  3. -- flags bitfield, so the `policy` column is dropped. Both SQLite (>= 3.35) and
  4. -- PostgreSQL support ALTER TABLE ... DROP COLUMN.
  5. ALTER TABLE accounts DROP COLUMN policy;