Skip to content

Commit

Permalink
Ashish table create (#972)
Browse files Browse the repository at this point in the history
* saving

* Feat : adding table

* Feat : table creating

* updated configs

* Feat : added table

* Feat : table added

* Feat : integrated processtracks
  • Loading branch information
ashish-egov authored Jun 27, 2024
1 parent 9686aaf commit 5ee53b9
Show file tree
Hide file tree
Showing 12 changed files with 5,625 additions and 3,120 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
CREATE TABLE health.eg_cm_campaign_process (
id VARCHAR(128) PRIMARY KEY,
campaignId VARCHAR(128) NOT NULL,
type VARCHAR(128),
status VARCHAR(128),
details JSONB,
createdtime BIGINT,
lastmodifiedtime BIGINT,
additionaldetails JSONB,
CONSTRAINT fk_campaignId FOREIGN KEY (campaignId) REFERENCES health.eg_cm_campaign_details(id)
);
Loading

0 comments on commit 5ee53b9

Please sign in to comment.