Changes between Version 15 and Version 16 of WikiStart/Analytics


Ignore:
Timestamp:
04/25/25 21:56:49 (5 weeks ago)
Author:
203206
Comment:

db3

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart/Analytics

    v15 v16  
    129129
    130130
    131 {{{
    132    CREATE INDEX idx_transfer_s_id ON transfer(s_id);
    133 
    134 
    135    CREATE INDEX idx_transfer_r_id ON transfer(r_id);
    136 
    137    CREATE INDEX idx_account_id ON account(id);
    138 }}}
     131
    139132
    140133
     
    217210}}}
    218211
     212== Индекси
     213{{{
     214
     215
     216CREATE INDEX idx_deposit_account_id_amount ON deposit (account_id, amount);
     217
     218CREATE INDEX idx_transfer_s_id ON transfer(s_id);
     219
     220CREATE INDEX idx_transfer_r_id ON transfer(r_id);
     221
     222CREATE INDEX idx_account_id ON account(id);
     223}}}