misc_cash_increases
Data source: I_Contributions
0 rows where filer_name = 263 sorted by report_date descending
This data as json
0 records
CREATE TABLE "misc_cash_increases" (
"filer_id" INTEGER,
"filer_name" INTEGER,
"report_date" TEXT,
"report_start_date" TEXT,
"report_end_date" TEXT,
"election_date" TEXT,
"transaction_id" TEXT,
"entity_type" TEXT,
"last_name" TEXT,
"first_name" TEXT,
"prefix" TEXT,
"city" TEXT,
"state" TEXT,
"zipcode" TEXT,
"employer" INTEGER,
"occupation" TEXT,
"self_employed" TEXT,
"transaction_type" TEXT,
"transaction_date" TEXT,
"transaction_amt" NUMERIC,
"year_to_date" NUMERIC,
"transaction_description" TEXT,
"committee_id" TEXT,
"memo_reference_number" TEXT
,
FOREIGN KEY ("filer_id") REFERENCES [filer_ids](id),
FOREIGN KEY ("filer_name") REFERENCES [filer_names](id),
FOREIGN KEY ("committee_id") REFERENCES [committee_ids](id),
FOREIGN KEY ("employer") REFERENCES [businesses](id));
CREATE INDEX ["misc_cash_increases_filer_id"] ON [misc_cash_increases]("filer_id");
CREATE INDEX ["misc_cash_increases_filer_name"] ON [misc_cash_increases]("filer_name");
CREATE INDEX ["misc_cash_increases_committee_id"] ON [misc_cash_increases]("committee_id");
CREATE INDEX ["misc_cash_increases_employer"] ON [misc_cash_increases]("employer");