Skip to content

Instantly share code, notes, and snippets.

@lighth7015
Created December 10, 2019 14:12
Show Gist options
  • Save lighth7015/60a751d20be55ee89275e023dd1c1921 to your computer and use it in GitHub Desktop.
Save lighth7015/60a751d20be55ee89275e023dd1c1921 to your computer and use it in GitHub Desktop.
schema.sql
CREATE TABLE IF NOT EXISTS "drugs_list" (
"NDC" TEXT,
"DrugName" TEXT,
"GenericName" TEXT,
"Strength" INTEGER,
"StrengthUOM" TEXT,
"DoseForm" TEXT,
"MONY" TEXT,
"GPI" REAL,
"PackageSize" REAL,
"RxOTCInd" TEXT,
"ProductName" TEXT,
"TpaRestrictionCode" INTEGER,
"RouteOfAdministration" TEXT,
"MAINTDRUGCODE" TEXT
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment