mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-09-30 14:32:23 +00:00
15 lines
417 B
SQL
15 lines
417 B
SQL
CREATE TABLE accounts (
|
|
id BIGSERIAL PRIMARY KEY,
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
name TEXT NOT NULL,
|
|
is_active BOOLEAN,
|
|
score DOUBLE PRECISION
|
|
);
|
|
|
|
-- https://www.postgresql.org/docs/current/rowtypes.html#ROWTYPES-DECLARING
|
|
CREATE TYPE inventory_item AS (
|
|
name TEXT,
|
|
supplier_id INT,
|
|
price BIGINT
|
|
);
|