Changes between Version 2 and Version 3 of WikiStart/DB


Ignore:
Timestamp:
03/22/25 15:25:29 (13 days ago)
Author:
203206
Comment:

db1

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart/DB

    v2 v3  
    1818        account_id int not null,
    1919        foreign key (account_id) references account(id)
     20);
     21
     22create 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
    2030);
    2131