Files
pathwaycom--llm-app/templates/unstructured_to_sql_on_the_fly/postgres/init-db.sql
T
wehub-resource-sync 1dacb4cc91
lint PR / linter (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:03:53 +08:00

10 lines
278 B
SQL

CREATE TABLE IF NOT EXISTS quarterly_earnings (
company_symbol TEXT NOT NULL,
eps FLOAT NOT NULL,
net_income_md FLOAT NOT NULL,
quarter TEXT NOT NULL,
revenue_md FLOAT NOT NULL,
year BIGINT NOT NULL,
time BIGINT NOT NULL,
diff INTEGER NOT NULL
);