13 lines
No EOL
220 B
SQL
13 lines
No EOL
220 B
SQL
-- public.info definition
|
|
|
|
-- Drop table
|
|
|
|
-- DROP TABLE public.info;
|
|
|
|
CREATE TABLE public.info (
|
|
birth_year date NULL,
|
|
full_name text NOT NULL,
|
|
phone_number varchar NULL,
|
|
email varchar NULL,
|
|
profile_pic text NULL
|
|
); |