home_api/migrations/2024-03-28-000121_techs/up.sql

7 líneas
151 B
MySQL

2024-05-12 03:59:40 +02:00
-- 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
)