Changes between Version 17 and Version 18 of WikiStart/DB


Ignore:
Timestamp:
08/24/25 21:48:34 (20 hours ago)
Author:
203206
Comment:

db2

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart/DB

    v17 v18  
    7676
    7777        if new.type = 'Deposit' then
    78                 insert into Deposit(a_id, amount, deposit_timestamp)
     78                insert into Deposit(a_id, deposit_amount, deposit_timestamp)
    7979                values (new.a_id, new.deposit_amount, new.deposit_timestamp);
    8080       
    8181        elsif new.type = 'Withdrawal' then
    82                 insert into Withdraw(a_id, amount, withdraw_timestamp)
     82                insert into Withdraw(a_id, withdraw_amount, withdraw_timestamp)
    8383                values (new.a_id, new.withdraw_amount, new.withdraw_timestamp);
    8484