Compensation, endowmnet tweaks. Added About.
This commit is contained in:
parent
a41f78545b
commit
13fb4b8418
13 changed files with 914 additions and 17 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue