good morning!!!!

Skip to content
Snippets Groups Projects
Commit 6b861876 authored by Carlos Nieto's avatar Carlos Nieto
Browse files

Adding test structs.

parent 7feb665a
No related branches found
No related tags found
No related merge requests found
all:
cat structs.sql | psql -Uupperio upperio_tests
DROP TABLE IF EXISTS artist;
CREATE TABLE artist (
id SERIAL PRIMARY KEY,
name VARCHAR(60)
);
DROP TABLE IF EXISTS data_types;
CREATE TABLE data_types (
id integer NOT NULL,
_uint integer,
_uint8 integer,
_uint16 integer,
_uint32 integer,
_uint64 integer,
_int integer,
_int8 integer,
_int16 integer,
_int32 integer,
_int64 integer,
_float32 numeric(10,6),
_float64 numeric(10,6),
_bool boolean,
_string text,
_date timestamp without time zone,
_time time without time zone
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment