inventory-system/migrations/2022-07-23-163034_create_containers/up.sql

12 lines
262 B
MySQL
Raw Permalink Normal View History

2022-07-23 18:26:45 +01:00
-- Your SQL goes here
create table containers
(
id uuid default gen_random_uuid() not null
primary key,
parent uuid
constraint foreign_key_name
references containers,
name varchar not null
);