jerguero-rs/db/schema.sql

8 lines
159 B
MySQL
Raw Normal View History

2024-02-25 23:29:46 +00:00
-- PostgreSQL schema for the system
2024-08-10 21:50:09 +00:00
create table person(
person_id serial primary key,
person_email varchar(100),
person_password varchar(100)
);