Changes between Version 2 and Version 3 of WikiStart/DB
- Timestamp:
- 03/22/25 15:25:29 (13 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart/DB
v2 v3 18 18 account_id int not null, 19 19 foreign key (account_id) references account(id) 20 ); 21 22 create table transfer( 23 id serial primary key, 24 s_id int not null, 25 r_id int not null, 26 foreign key(s_id) references account(id), 27 foreign key(r_id) references 28 account(id) 29 20 30 ); 21 31