Changes between Version 17 and Version 18 of WikiStart/DB
- Timestamp:
- 08/24/25 21:48:34 (20 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart/DB
v17 v18 76 76 77 77 if new.type = 'Deposit' then 78 insert into Deposit(a_id, amount, deposit_timestamp)78 insert into Deposit(a_id, deposit_amount, deposit_timestamp) 79 79 values (new.a_id, new.deposit_amount, new.deposit_timestamp); 80 80 81 81 elsif new.type = 'Withdrawal' then 82 insert into Withdraw(a_id, amount, withdraw_timestamp)82 insert into Withdraw(a_id, withdraw_amount, withdraw_timestamp) 83 83 values (new.a_id, new.withdraw_amount, new.withdraw_timestamp); 84 84