6 líneas
151 B
SQL
6 líneas
151 B
SQL
-- Your SQL goes here
|
|
create table if not exists techs (
|
|
id int primary key,
|
|
tech_short_name text not_null,
|
|
tech_full_name text not_null
|
|
)
|