8 lines
90 B
SQL
8 lines
90 B
SQL
create table talent_group
|
|
(
|
|
code TEXT
|
|
primary key,
|
|
name TEXT not null
|
|
);
|
|
|