Compensation, endowmnet tweaks. Added About.

This commit is contained in:
emfurst 2026-03-31 08:03:58 -04:00
commit 13fb4b8418
13 changed files with 914 additions and 17 deletions

View file

@ -100,6 +100,21 @@ TABLES = {
other_compensation BIGINT
)
""",
"raw_ipeds_endowment": """
CREATE TABLE IF NOT EXISTS raw_ipeds_endowment (
unitid INTEGER NOT NULL,
year INTEGER NOT NULL,
endowment_boy BIGINT,
endowment_eoy BIGINT,
new_gifts BIGINT,
net_investment_return BIGINT,
other_changes BIGINT,
total_private_gifts BIGINT,
total_investment_return BIGINT,
long_term_investments BIGINT,
PRIMARY KEY (unitid, year)
)
""",
"raw_cpi_u": """
CREATE TABLE IF NOT EXISTS raw_cpi_u (
year INTEGER NOT NULL,