Changes between Version 12 and Version 13 of WikiStart/DB
- Timestamp:
- 03/23/25 20:44:44 (12 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart/DB
v12 v13 1 1 == Релациона шема 2 2 3 * '''account''' (id, username, password, balance, e-mail)3 * '''account''' (id, username, e-mail, password, balance) 4 4 * '''transaction''' (id, amount, type, timestamp, account_id*) 5 5 * '''transfer''' (id, s_id*, r_id*) … … 14 14 id serial primary key, 15 15 username varchar(255) not null, 16 email varchar(255) not null, 16 17 password varchar(255) not null, 17 18 balance decimal(15, 2) not null