home_api/migrations/2024-03-28-000121_techs/up.sql
2024-05-12 03:59:40 +02:00

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
)