Changes between Version 12 and Version 13 of WikiStart/DB


Ignore:
Timestamp:
03/23/25 20:44:44 (12 days ago)
Author:
203206
Comment:

db

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart/DB

    v12 v13  
    11== Релациона шема
    22
    3 * '''account''' (id, username, password, balance, e-mail)
     3* '''account''' (id, username, e-mail, password, balance)
    44* '''transaction''' (id, amount, type, timestamp, account_id*)
    55* '''transfer''' (id, s_id*, r_id*)
     
    1414    id serial primary key,
    1515    username varchar(255) not null,
     16    email varchar(255) not null,
    1617    password varchar(255) not null,
    1718    balance decimal(15, 2) not null