5 lines
75 B
SQL
5 lines
75 B
SQL
CREATE TABLE IF NOT EXISTS bank (
|
|
id BIGINT PRIMARY KEY,
|
|
balance INT
|
|
)
|