An open API service indexing awesome lists of open source software.

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

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";
```