-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #669 from OHDSI/issue-657
Fixes #657
- Loading branch information
Showing
2 changed files
with
51 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
-- DDL FOR THE ACHILLES_ANALYSIS TABLE | ||
|
||
IF OBJECT_ID('@resultsDatabaseSchema.achilles_analysis', 'U') IS NOT NULL | ||
DROP TABLE @resultsDatabaseSchema.achilles_analysis; | ||
|
||
CREATE TABLE @resultsDatabaseSchema.ACHILLES_ANALYSIS ( | ||
analysis_id INTEGER, | ||
analysis_name VARCHAR(255), | ||
stratum_1_name VARCHAR(255), | ||
stratum_2_name VARCHAR(255), | ||
stratum_3_name VARCHAR(255), | ||
stratum_4_name VARCHAR(255), | ||
stratum_5_name VARCHAR(255), | ||
is_default INTEGER, | ||
category VARCHAR(255) | ||
); | ||
|