https://github.com/iderr/openfoodfacts
My work on importing openfoodfacts on Postgres and cleaning the database
https://github.com/iderr/openfoodfacts
Last synced: 11 months ago
JSON representation
My work on importing openfoodfacts on Postgres and cleaning the database
- Host: GitHub
- URL: https://github.com/iderr/openfoodfacts
- Owner: IDerr
- Created: 2021-10-25T22:15:35.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-23T21:45:00.000Z (over 4 years ago)
- Last Synced: 2023-03-06T17:10:55.138Z (over 3 years ago)
- Language: Python
- Size: 271 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Openfoodfacts
My work on importing openfoodfacts on Postgres and cleaning the database
# Delete tables
```
DROP TABLE "public"."AdditiveProduct";
DROP TABLE "public"."AllergenProduct";
DROP TABLE "public"."BrandProduct";
DROP TABLE "public"."CategoryProduct";
DROP TABLE "public"."CountryProduct";
DROP TABLE "public"."EmbProduct";
DROP TABLE "public"."LabelProduct";
DROP TABLE "public"."OriginProduct";
DROP TABLE "public"."PackageProduct";
DROP TABLE "public"."ProductStore";
DROP TABLE "public"."ProductTrace";
DROP TABLE "public"."Additive";
DROP TABLE "public"."Allergen";
DROP TABLE "public"."Brand";
DROP TABLE "public"."Category";
DROP TABLE "public"."Country";
DROP TABLE "public"."Emb";
DROP TABLE "public"."Label";
DROP TABLE "public"."Package";
DROP TABLE "public"."Product";
DROP TABLE "public"."Store";
DROP TABLE "public"."Trace";
```