Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

299 updated constants to fix ACS social control total population bug #300

Merged
merged 1 commit into from
Apr 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions special-calculations/data/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ const DECENNIAL_EARLIEST_TABLE_NAME = '2010';
const DECENNIAL_EARLIEST_VERSION = '2024-04-16';
const ACS_SCHEMA_NAME = 'acs';
const ACS_LATEST_TABLE_NAME = '2022';
const ACS_LATEST_VERSION = '2024-04-01';
const ACS_LATEST_VERSION = '2024-04-19';
const ACS_EARLIEST_TABLE_NAME = '2010';
const ACS_EARLIEST_VERSION = '2024-04-01';
const ACS_EARLIEST_VERSION = '2024-04-19';
const ACS_METADATA_FULL_PATH = `"${ACS_SCHEMA_NAME}"."metadata"`;
const ACS_LATEST_TABLE_FULL_PATH = `"${ACS_SCHEMA_NAME}"."${ACS_LATEST_TABLE_NAME}"`;
const ACS_EARLIEST_TABLE_FULL_PATH = `"${ACS_SCHEMA_NAME}"."${ACS_EARLIEST_TABLE_NAME}"`;
Expand Down
Loading