5 lines
90 B
SQL
5 lines
90 B
SQL
create table if not exists players
|
|
(
|
|
id integer primary key not null,
|
|
name text not null
|
|
) |