7 líneas
151 B
MySQL
7 líneas
151 B
MySQL
|
-- 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
|
||
|
)
|