jerguero-rs/db/schema.sql

8 lines
159 B
SQL

-- PostgreSQL schema for the system
create table person(
person_id serial primary key,
person_email varchar(100),
person_password varchar(100)
);