fix[SQL]: final version of the database + python file to generate file. TODO : remove already used primary keys and not used foreign keys.
This commit is contained in:
parent
be3aba341f
commit
ac5e01f0e0
@ -18,52 +18,60 @@ CREATE TABLE acheter
|
||||
|
||||
CREATE TABLE avoir_motif
|
||||
(
|
||||
id_piece INTEGER NOT NULL,
|
||||
id_motif INTEGER NOT NULL,
|
||||
id_piece INTEGER ,
|
||||
id_motif INTEGER ,
|
||||
CONSTRAINT pk__avoir_motif PRIMARY KEY (id_piece, id_motif)
|
||||
);
|
||||
|
||||
CREATE TABLE avoir_tag
|
||||
(
|
||||
id_tag INTEGER ,
|
||||
id_boite INTEGER ,
|
||||
CONSTRAINT pk__avoir_tag PRIMARY KEY (id_tag, id_boite)
|
||||
);
|
||||
|
||||
CREATE TABLE boites
|
||||
(
|
||||
id_boite SERIAL NOT NULL,
|
||||
id_boite INTEGER NOT NULL,
|
||||
titre_boite varchar(255) NOT NULL,
|
||||
date_boite DATE ,
|
||||
id_marque INTEGER ,
|
||||
CONSTRAINT pk__boites PRIMARY KEY (id_boite)
|
||||
);
|
||||
|
||||
CREATE TABLE colorer
|
||||
(
|
||||
id_piece INTEGER NOT NULL,
|
||||
id_couleur INTEGER NOT NULL,
|
||||
id_couleur INTEGER ,
|
||||
CONSTRAINT pk__colorer PRIMARY KEY (id_piece, id_couleur)
|
||||
);
|
||||
|
||||
CREATE TABLE construire
|
||||
(
|
||||
id_boite INTEGER NOT NULL,
|
||||
id_modele INTEGER NOT NULL,
|
||||
id_boite INTEGER ,
|
||||
id_modele INTEGER ,
|
||||
CONSTRAINT pk__construire PRIMARY KEY (id_boite, id_modele)
|
||||
);
|
||||
|
||||
CREATE TABLE contenir
|
||||
(
|
||||
id_boite INTEGER NOT NULL,
|
||||
id_piece INTEGER NOT NULL,
|
||||
id_boite INTEGER ,
|
||||
id_piece INTEGER ,
|
||||
quantite_contenir INTEGER NOT NULL,
|
||||
CONSTRAINT pk__contenir PRIMARY KEY (id_boite, id_piece)
|
||||
);
|
||||
|
||||
CREATE TABLE couleurs
|
||||
(
|
||||
id_couleur SERIAL NOT NULL,
|
||||
id_couleur INTEGER NOT NULL,
|
||||
nom_couleur VARCHAR(255) ,
|
||||
CONSTRAINT pk__couleurs PRIMARY KEY (id_couleur)
|
||||
);
|
||||
|
||||
CREATE TABLE enregistrer
|
||||
(
|
||||
id_boite INTEGER NOT NULL,
|
||||
id_membre INTEGER NOT NULL,
|
||||
id_boite INTEGER ,
|
||||
id_membre INTEGER ,
|
||||
quantite_enregistrer INTEGER NOT NULL,
|
||||
CONSTRAINT pk__enregistrer PRIMARY KEY (id_boite, id_membre)
|
||||
);
|
||||
@ -71,7 +79,7 @@ CREATE TABLE enregistrer
|
||||
CREATE TABLE etre
|
||||
(
|
||||
id_piece INTEGER NOT NULL,
|
||||
id_marque INTEGER NOT NULL,
|
||||
id_marque INTEGER ,
|
||||
CONSTRAINT pk__etre PRIMARY KEY (id_piece, id_marque)
|
||||
);
|
||||
|
||||
@ -98,7 +106,7 @@ CREATE TABLE fils
|
||||
|
||||
CREATE TABLE illustrations
|
||||
(
|
||||
id_illustration SERIAL NOT NULL,
|
||||
id_illustration INTEGER NOT NULL,
|
||||
url_illustration VARCHAR(2048) ,
|
||||
id_modele INTEGER NOT NULL,
|
||||
CONSTRAINT pk__illustrations PRIMARY KEY (id_illustration)
|
||||
@ -106,34 +114,41 @@ CREATE TABLE illustrations
|
||||
|
||||
CREATE TABLE marques
|
||||
(
|
||||
id_marque SERIAL NOT NULL,
|
||||
id_marque INTEGER NOT NULL,
|
||||
nom_marque VARCHAR(255) ,
|
||||
CONSTRAINT pk__marques PRIMARY KEY (id_marque)
|
||||
);
|
||||
|
||||
CREATE TABLE membres
|
||||
(
|
||||
id_membre INTEGER NOT NULL,
|
||||
nom_membre VARCHAR(255) NOT NULL,
|
||||
CONSTRAINT pk__membres PRIMARY KEY (id_membre)
|
||||
);
|
||||
|
||||
CREATE TABLE messages
|
||||
(
|
||||
id_message SERIAL NOT NULL,
|
||||
id_message INTEGER NOT NULL,
|
||||
contenu_message VARCHAR(255) ,
|
||||
id_membre SERIAL NOT NULL,
|
||||
id_fil SERIAL NOT NULL,
|
||||
id_message_2 SERIAL NOT NULL,
|
||||
id_membre INTEGER NOT NULL,
|
||||
id_fil INTEGER NOT NULL,
|
||||
id_message_2 INTEGER NOT NULL,
|
||||
CONSTRAINT pk__messages PRIMARY KEY (id_message)
|
||||
);
|
||||
|
||||
CREATE TABLE modeles
|
||||
(
|
||||
id_modele SERIAL NOT NULL,
|
||||
id_modele INTEGER NOT NULL,
|
||||
nom_modele VARCHAR(255) ,
|
||||
url_notice_modele VARCHAR(2048) ,
|
||||
id_membre INTEGER NOT NULL,
|
||||
id_modele_2 INTEGER NOT NULL,
|
||||
id_modele_etendu INTEGER NOT NULL,
|
||||
CONSTRAINT pk__modeles PRIMARY KEY (id_modele)
|
||||
);
|
||||
|
||||
CREATE TABLE necessiter
|
||||
(
|
||||
id_modele INTEGER NOT NULL,
|
||||
id_modele INTEGER ,
|
||||
id_piece INTEGER NOT NULL,
|
||||
quantite_necessiter INTEGER NOT NULL,
|
||||
CONSTRAINT pk__necessiter PRIMARY KEY (id_modele, id_piece)
|
||||
@ -141,59 +156,59 @@ CREATE TABLE necessiter
|
||||
|
||||
CREATE TABLE noter
|
||||
(
|
||||
id_modele INTEGER NOT NULL,
|
||||
id_membre INTEGER NOT NULL,
|
||||
id_modele INTEGER ,
|
||||
id_membre INTEGER ,
|
||||
note_noter VARCHAR(255) NOT NULL,
|
||||
CONSTRAINT pk__noter PRIMARY KEY (id_modele, id_membre)
|
||||
);
|
||||
|
||||
CREATE TABLE perdre
|
||||
(
|
||||
id_membre INTEGER NOT NULL,
|
||||
id_boite INTEGER NOT NULL,
|
||||
id_membre INTEGER ,
|
||||
id_boite INTEGER ,
|
||||
id_piece INTEGER NOT NULL,
|
||||
quantite_perdre INTEGER NOT NULL,
|
||||
CONSTRAINT pk__perdre PRIMARY KEY (id_membre, id_boite, id_piece)
|
||||
);
|
||||
|
||||
CREATE TABLE tags
|
||||
(
|
||||
id_tag INTEGER NOT NULL,
|
||||
nom_tag VARCHAR(255) ,
|
||||
CONSTRAINT pk__tags PRIMARY KEY (id_tag)
|
||||
);
|
||||
|
||||
CREATE TABLE varier
|
||||
(
|
||||
id_modele INTEGER NOT NULL,
|
||||
id_modele_2 INTEGER NOT NULL,
|
||||
CONSTRAINT pk__varier PRIMARY KEY (id_modele, id_modele_2)
|
||||
id_modele INTEGER ,
|
||||
id_modele_etendu INTEGER ,
|
||||
CONSTRAINT pk__varier PRIMARY KEY (id_modele, id_modele_etendu)
|
||||
);
|
||||
|
||||
CREATE TABLE formes
|
||||
(
|
||||
id_forme SERIAL NOT NULL,
|
||||
id_forme INTEGER NOT NULL,
|
||||
nom_forme VARCHAR(255) NOT NULL,
|
||||
CONSTRAINT pk__formes PRIMARY KEY (id_forme)
|
||||
);
|
||||
|
||||
CREATE TABLE membres
|
||||
(
|
||||
id_membre SERIAL NOT NULL,
|
||||
nom_membre VARCHAR(255) NOT NULL,
|
||||
mdp_membre VARCHAR(255) NOT NULL,
|
||||
CONSTRAINT pk__membres PRIMARY KEY (id_membre)
|
||||
);
|
||||
|
||||
CREATE TABLE motifs
|
||||
(
|
||||
id_motif SERIAL NOT NULL,
|
||||
id_motif INTEGER NOT NULL,
|
||||
nom_motif VARCHAR(255) NOT NULL,
|
||||
CONSTRAINT pk__motifs PRIMARY KEY (id_motif)
|
||||
);
|
||||
|
||||
CREATE TABLE pieces
|
||||
(
|
||||
id_piece SERIAL NOT NULL,
|
||||
id_piece INTEGER NOT NULL,
|
||||
CONSTRAINT pk__pieces PRIMARY KEY (id_piece)
|
||||
);
|
||||
|
||||
CREATE TABLE pieces_complexes
|
||||
(
|
||||
id_piece_complexe SERIAL NOT NULL,
|
||||
id_piece_complexe INTEGER NOT NULL,
|
||||
CONSTRAINT pk__pieces_complexes PRIMARY KEY (id_piece_complexe)
|
||||
);
|
||||
|
||||
@ -217,6 +232,18 @@ ALTER TABLE avoir_motif
|
||||
ADD CONSTRAINT fk2__avoir_motif FOREIGN KEY (id_motif)
|
||||
REFERENCES motifs (id_motif);
|
||||
|
||||
ALTER TABLE avoir_tag
|
||||
ADD CONSTRAINT fk1__avoir_tag FOREIGN KEY (id_tag)
|
||||
REFERENCES tags (id_tag);
|
||||
|
||||
ALTER TABLE avoir_tag
|
||||
ADD CONSTRAINT fk2__avoir_tag FOREIGN KEY (id_boite)
|
||||
REFERENCES boites (id_boite);
|
||||
|
||||
ALTER TABLE boites
|
||||
ADD CONSTRAINT fk1__boites FOREIGN KEY (id_marque)
|
||||
REFERENCES marques (id_marque);
|
||||
|
||||
ALTER TABLE colorer
|
||||
ADD CONSTRAINT fk1__colorer FOREIGN KEY (id_piece)
|
||||
REFERENCES pieces (id_piece);
|
||||
@ -234,7 +261,11 @@ ALTER TABLE construire
|
||||
REFERENCES modeles (id_modele);
|
||||
|
||||
ALTER TABLE contenir
|
||||
ADD CONSTRAINT fk2__contenir FOREIGN KEY (id_boite)
|
||||
ADD CONSTRAINT fk1__contenir FOREIGN KEY (id_boite)
|
||||
REFERENCES boites (id_boite);
|
||||
|
||||
ALTER TABLE contenir
|
||||
ADD CONSTRAINT fk2__contenir FOREIGN KEY (id_piece)
|
||||
REFERENCES pieces (id_piece);
|
||||
|
||||
ALTER TABLE enregistrer
|
||||
@ -249,6 +280,10 @@ ALTER TABLE etre
|
||||
ADD CONSTRAINT fk1__etre FOREIGN KEY (id_piece)
|
||||
REFERENCES pieces (id_piece);
|
||||
|
||||
ALTER TABLE etre
|
||||
ADD CONSTRAINT fk2__etre FOREIGN KEY (id_marque)
|
||||
REFERENCES marques (id_marque);
|
||||
|
||||
ALTER TABLE etre_complexe
|
||||
ADD CONSTRAINT fk1__etre_complexe FOREIGN KEY (id_piece)
|
||||
REFERENCES pieces (id_piece);
|
||||
@ -274,13 +309,25 @@ ALTER TABLE illustrations
|
||||
REFERENCES modeles (id_modele);
|
||||
|
||||
ALTER TABLE messages
|
||||
ADD CONSTRAINT fk1__messages FOREIGN KEY (id_fil)
|
||||
ADD CONSTRAINT fk1__messages FOREIGN KEY (id_membre)
|
||||
REFERENCES membres (id_membre);
|
||||
|
||||
ALTER TABLE messages
|
||||
ADD CONSTRAINT fk2__messages FOREIGN KEY (id_fil)
|
||||
REFERENCES fils (id_fil);
|
||||
|
||||
ALTER TABLE messages
|
||||
ADD CONSTRAINT fk2__messages FOREIGN KEY (id_message_2)
|
||||
ADD CONSTRAINT fk3__messages FOREIGN KEY (id_message_2)
|
||||
REFERENCES messages (id_message);
|
||||
|
||||
ALTER TABLE modeles
|
||||
ADD CONSTRAINT fk1__modeles FOREIGN KEY (id_membre)
|
||||
REFERENCES membres (id_membre);
|
||||
|
||||
ALTER TABLE modeles
|
||||
ADD CONSTRAINT fk2__modeles FOREIGN KEY (id_modele_etendu)
|
||||
REFERENCES modeles (id_modele);
|
||||
|
||||
ALTER TABLE necessiter
|
||||
ADD CONSTRAINT fk1__necessiter FOREIGN KEY (id_modele)
|
||||
REFERENCES modeles (id_modele);
|
||||
@ -314,7 +361,7 @@ ALTER TABLE varier
|
||||
REFERENCES modeles (id_modele);
|
||||
|
||||
ALTER TABLE varier
|
||||
ADD CONSTRAINT fk2__varier FOREIGN KEY (id_modele_2)
|
||||
ADD CONSTRAINT fk2__varier FOREIGN KEY (id_modele_etendu)
|
||||
REFERENCES modeles (id_modele);
|
||||
|
||||
-- ============================================================================
|
||||
|
@ -1,6 +1,4 @@
|
||||
brand
|
||||
"Runolfsdottir, Daugherty and Von"
|
||||
"Wiegand, O'Conner and Streich"
|
||||
Klein LLC
|
||||
DuBuque and Sons
|
||||
Wisozk-Heidenreich
|
||||
@ -8,29 +6,18 @@ Fadel-Torp
|
||||
Predovic-Aufderhar
|
||||
Simonis Inc
|
||||
Gleason and Sons
|
||||
"Prosacco, Kovacek and Senger"
|
||||
Hilll-Douglas
|
||||
"Hagenes, Pfeffer and Kuvalis"
|
||||
Leannon Inc
|
||||
Hane Inc
|
||||
Bechtelar-Mosciski
|
||||
"Predovic, Moore and Baumbach"
|
||||
Hane-Kirlin
|
||||
"Gibson, Collier and Buckridge"
|
||||
"Powlowski, Gislason and Shanahan"
|
||||
"Gleichner, Bogisich and Gerhold"
|
||||
Oberbrunner-Sauer
|
||||
Lakin Inc
|
||||
"Kemmer, Ortiz and Cartwright"
|
||||
|
||||
"Lockman, Jacobson and Daugherty"
|
||||
Daniel-Kris
|
||||
Price-Gerhold
|
||||
"Crist, Lockman and Mertz"
|
||||
|
||||
Schultz Inc
|
||||
"Cruickshank, Borer and Bruen"
|
||||
"Quigley, Koch and Fahey"
|
||||
Erdman and Sons
|
||||
Blick-Howell
|
||||
Leannon Group
|
||||
@ -39,50 +26,32 @@ Corwin-Schimmel
|
||||
Morar-Harber
|
||||
|
||||
Kemmer and Sons
|
||||
"Wuckert, Kris and Cummings"
|
||||
|
||||
"Sporer, Schmidt and Yost"
|
||||
"Runolfsdottir, Crist and Wehner"
|
||||
Boehm-Balistreri
|
||||
Schumm LLC
|
||||
Olson-Schmitt
|
||||
McCullough-Stoltenberg
|
||||
Ferry LLC
|
||||
"Lubowitz, Thiel and Wehner"
|
||||
Cruickshank and Sons
|
||||
Goodwin-Mayert
|
||||
Feest Inc
|
||||
"Baumbach, Nicolas and Heathcote"
|
||||
"Jacobson, Dach and Zulauf"
|
||||
Koss-Flatley
|
||||
Stark Inc
|
||||
Ratke-Bode
|
||||
"VonRueden, Klocko and Lueilwitz"
|
||||
Walker-Pacocha
|
||||
"Johnson, Will and Bauch"
|
||||
O'Reilly-Davis
|
||||
Schumm-Jacobs
|
||||
"Beahan, Kirlin and Tremblay"
|
||||
"Mayer, Bahringer and Pollich"
|
||||
Botsford Inc
|
||||
Baumbach LLC
|
||||
"Corwin, Casper and Kirlin"
|
||||
Turcotte Group
|
||||
"Rippin, Hayes and Kshlerin"
|
||||
"Hane, Wiegand and Flatley"
|
||||
"Lockman, Rath and Dickinson"
|
||||
Boyle-Brown
|
||||
Kuvalis and Sons
|
||||
Cartwright Inc
|
||||
|
||||
"Christiansen, Leuschke and Kshlerin"
|
||||
Russel-Heller
|
||||
"Hudson, Kilback and Fritsch"
|
||||
Gleichner-Barton
|
||||
Kreiger-Walsh
|
||||
Murphy-Von
|
||||
Morissette-Zulauf
|
||||
"Jakubowski, VonRueden and White"
|
||||
Jacobs-Schaefer
|
||||
Fay and Sons
|
||||
|
||||
@ -91,48 +60,35 @@ Reichel LLC
|
||||
Gutkowski LLC
|
||||
Littel Inc
|
||||
Towne-Harvey
|
||||
"Kozey, Haley and Emard"
|
||||
"Bogan, Morar and Medhurst"
|
||||
Lang-Kirlin
|
||||
VonRueden and Sons
|
||||
Bogan-Tremblay
|
||||
Bradtke-Monahan
|
||||
Stiedemann-Kling
|
||||
"Bartoletti, Stoltenberg and Lesch"
|
||||
Champlin-Jacobs
|
||||
Walsh-Blick
|
||||
Hagenes-Paucek
|
||||
Volkman and Sons
|
||||
Abshire Inc
|
||||
"Jenkins, Swift and O'Kon"
|
||||
Senger-Johnston
|
||||
Hand Group
|
||||
Rolfson-Mayert
|
||||
Volkman-Ondricka
|
||||
"Bruen, Kuhn and Daugherty"
|
||||
Runolfsdottir-Walter
|
||||
"Fahey, Labadie and Friesen"
|
||||
Schulist-Wolf
|
||||
"Moen, Keeling and Koelpin"
|
||||
Reichel-Franecki
|
||||
Effertz and Sons
|
||||
Howe LLC
|
||||
Rohan-Bartoletti
|
||||
"Hilpert, McCullough and Okuneva"
|
||||
Pacocha-Emmerich
|
||||
"Denesik, Huel and Rippin"
|
||||
Nolan-Quitzon
|
||||
Stiedemann Inc
|
||||
"Schneider, Bernhard and Heaney"
|
||||
Connelly-Leuschke
|
||||
Cummings-Gibson
|
||||
"Schroeder, Stoltenberg and Beahan"
|
||||
Weimann-Kub
|
||||
Nitzsche-McDermott
|
||||
"Crist, McClure and O'Hara"
|
||||
Von Group
|
||||
Dietrich LLC
|
||||
"Paucek, Bartell and Grant"
|
||||
Schamberger and Sons
|
||||
Jones-Bogisich
|
||||
Corwin Inc
|
||||
@ -145,15 +101,10 @@ Kuvalis LLC
|
||||
|
||||
Schamberger-Kautzer
|
||||
Dickinson-Grady
|
||||
"Graham, Kunze and Von"
|
||||
|
||||
Parisian-Runte
|
||||
Hirthe Inc
|
||||
"Klein, Hermann and Schmidt"
|
||||
"Medhurst, Howell and Wyman"
|
||||
Tromp-Renner
|
||||
"Schoen, Bailey and Moen"
|
||||
"Sauer, Leannon and Stark"
|
||||
Pfeffer LLC
|
||||
Jaskolski and Sons
|
||||
Koepp and Sons
|
||||
@ -167,12 +118,9 @@ Shields-Kihn
|
||||
Wilderman-Wisozk
|
||||
Nienow-Sanford
|
||||
Stiedemann LLC
|
||||
"Pouros, Weber and Huels"
|
||||
Fay-Weber
|
||||
Cartwright-Wiegand
|
||||
Veum Inc
|
||||
"Predovic, Kuphal and Morar"
|
||||
"Schmidt, Emmerich and Daugherty"
|
||||
Greenholt Group
|
||||
Bergnaum and Sons
|
||||
Steuber-Breitenberg
|
||||
@ -180,43 +128,27 @@ Rempel-Lynch
|
||||
Baumbach Inc
|
||||
Jast-Schiller
|
||||
Streich LLC
|
||||
"Casper, Bradtke and Hickle"
|
||||
"VonRueden, Powlowski and Wehner"
|
||||
Marquardt-Parisian
|
||||
Labadie and Sons
|
||||
Gulgowski LLC
|
||||
"Hand, Beatty and Ratke"
|
||||
"Bosco, MacGyver and Weimann"
|
||||
Balistreri Group
|
||||
Kiehn-Hirthe
|
||||
Effertz-Gorczany
|
||||
O'Keefe-Heaney
|
||||
Goldner-Breitenberg
|
||||
O'Connell-Conroy
|
||||
Upton-Beier
|
||||
White LLC
|
||||
"Rowe, Halvorson and Goyette"
|
||||
Rowe Group
|
||||
"Grady, Rolfson and Purdy"
|
||||
"Dach, McCullough and Simonis"
|
||||
Wolf-Roberts
|
||||
"Gibson, Rosenbaum and Quigley"
|
||||
Hudson-Pacocha
|
||||
|
||||
Mohr-Pacocha
|
||||
"Casper, Crooks and Berge"
|
||||
Doyle LLC
|
||||
Kihn-Kirlin
|
||||
Dooley LLC
|
||||
"Welch, Gislason and Hand"
|
||||
Vandervort-Feest
|
||||
|
||||
"Gorczany, Botsford and Kling"
|
||||
Thiel-Gorczany
|
||||
Reichel-Mertz
|
||||
"Kutch, Mann and Kuhic"
|
||||
"Doyle, Quitzon and Leannon"
|
||||
O'Reilly and Sons
|
||||
Medhurst Group
|
||||
Feil and Sons
|
||||
Runolfsdottir Group
|
||||
@ -225,27 +157,17 @@ Lang Group
|
||||
|
||||
Ullrich LLC
|
||||
Oberbrunner-Hirthe
|
||||
"Zboncak, Kshlerin and Schowalter"
|
||||
Bosco-Lehner
|
||||
Orn Group
|
||||
Blick-Bruen
|
||||
"Stroman, Jacobs and Feil"
|
||||
Green and Sons
|
||||
"Hane, Brekke and Lowe"
|
||||
|
||||
"Deckow, Watsica and Waelchi"
|
||||
Sporer Group
|
||||
Prohaska-Hauck
|
||||
Reynolds Group
|
||||
Block-Parisian
|
||||
"Wolf, Will and Bernhard"
|
||||
"Mante, Schumm and Hansen"
|
||||
"Christiansen, Kovacek and Dietrich"
|
||||
Schumm-Ortiz
|
||||
"Hickle, Wehner and Raynor"
|
||||
Leffler-Murazik
|
||||
"Bode, Lynch and Hermann"
|
||||
"Johns, Hagenes and Yost"
|
||||
Crist LLC
|
||||
Marquardt Group
|
||||
Gislason Inc
|
||||
@ -254,97 +176,66 @@ Ondricka-Hintz
|
||||
Walsh LLC
|
||||
Koepp-Schamberger
|
||||
Rath-Runolfsdottir
|
||||
"Dickens, Auer and Lind"
|
||||
"Hartmann, Smith and Becker"
|
||||
"Dare, Kreiger and Heller"
|
||||
Bayer-Green
|
||||
Reichert Group
|
||||
Haag LLC
|
||||
"Kiehn, Lehner and Kreiger"
|
||||
Haley-Donnelly
|
||||
Russel Inc
|
||||
Zulauf Inc
|
||||
Hermiston and Sons
|
||||
"Gorczany, Gutmann and Maggio"
|
||||
|
||||
Runolfsdottir Inc
|
||||
Smitham-Ryan
|
||||
Goyette LLC
|
||||
"Medhurst, Jakubowski and Hermiston"
|
||||
|
||||
"Keeling, Howe and Emard"
|
||||
Cummerata Inc
|
||||
Marks-Nikolaus
|
||||
"Dach, Orn and Abbott"
|
||||
"Gutkowski, Bahringer and Howe"
|
||||
Turcotte Group
|
||||
"Lowe, Ziemann and Beer"
|
||||
Walsh Group
|
||||
Erdman LLC
|
||||
"Stokes, Wiza and Larson"
|
||||
Willms-Ortiz
|
||||
Miller and Sons
|
||||
"Walker, Heathcote and Ondricka"
|
||||
Moore and Sons
|
||||
Leffler-Dicki
|
||||
Kautzer-Funk
|
||||
Murazik-Sipes
|
||||
"Baumbach, Hilpert and Medhurst"
|
||||
Pollich Group
|
||||
Volkman-Koepp
|
||||
Prosacco LLC
|
||||
|
||||
"Paucek, Morar and Ratke"
|
||||
Trantow LLC
|
||||
McClure-Stanton
|
||||
Corwin-Prohaska
|
||||
"Turcotte, Pagac and Hilpert"
|
||||
Carroll and Sons
|
||||
"Wolf, Marquardt and Anderson"
|
||||
"Beahan, Witting and Ratke"
|
||||
|
||||
West-Hane
|
||||
Ernser and Sons
|
||||
Jacobson-Kohler
|
||||
"Reilly, Leffler and McLaughlin"
|
||||
Orn-Lemke
|
||||
Moen-Lemke
|
||||
"Satterfield, Hudson and Volkman"
|
||||
Hackett-Mosciski
|
||||
Hane LLC
|
||||
Wisoky-Jenkins
|
||||
"Witting, Wolf and Bailey"
|
||||
"Lebsack, Bogisich and Jaskolski"
|
||||
"Franecki, Herzog and Botsford"
|
||||
Grady Inc
|
||||
Hagenes Group
|
||||
"Frami, Rodriguez and Jerde"
|
||||
Donnelly-Waelchi
|
||||
Hermann LLC
|
||||
Weber and Sons
|
||||
Stamm LLC
|
||||
Fay-Satterfield
|
||||
"Cremin, Balistreri and Jakubowski"
|
||||
"Lemke, Grady and Bailey"
|
||||
"Herman, Donnelly and Ankunding"
|
||||
Ondricka-Waelchi
|
||||
Jacobson and Sons
|
||||
Smitham LLC
|
||||
"Zulauf, Lowe and Murray"
|
||||
Heidenreich-Robel
|
||||
Langworth-Beier
|
||||
Spinka-Emard
|
||||
Funk LLC
|
||||
"Hagenes, Leuschke and Moore"
|
||||
|
||||
"Hamill, Herman and Huels"
|
||||
"Treutel, Boyle and Halvorson"
|
||||
Mayer and Sons
|
||||
McGlynn-Beer
|
||||
Rippin-Steuber
|
||||
Moen-Yundt
|
||||
Vandervort-Breitenberg
|
||||
"Zulauf, Gerlach and Thiel"
|
||||
Tromp and Sons
|
||||
Pagac-Gislason
|
||||
|
||||
@ -355,8 +246,6 @@ Steuber Inc
|
||||
Boyle-Ondricka
|
||||
Thompson LLC
|
||||
Wilkinson-Flatley
|
||||
"Schinner, Ferry and Nicolas"
|
||||
"Lang, Senger and Schultz"
|
||||
Powlowski-Hane
|
||||
Schumm and Sons
|
||||
Thiel and Sons
|
||||
@ -369,119 +258,66 @@ Miller LLC
|
||||
Lindgren Group
|
||||
Reilly-Kautzer
|
||||
Barton and Sons
|
||||
"Satterfield, Heaney and Donnelly"
|
||||
Sawayn Inc
|
||||
"Pfannerstill, Abbott and Daugherty"
|
||||
Schmitt-Runolfsson
|
||||
"Kirlin, Goldner and Keeling"
|
||||
Gibson-Donnelly
|
||||
Marks LLC
|
||||
Yost LLC
|
||||
"Reichert, Kuhlman and Upton"
|
||||
"Gorczany, Kerluke and Von"
|
||||
"Hamill, Hauck and Grimes"
|
||||
Paucek and Sons
|
||||
|
||||
Rice-Krajcik
|
||||
Pfannerstill LLC
|
||||
"Gutmann, Pouros and Schuppe"
|
||||
Willms-Runolfsdottir
|
||||
"Lebsack, Volkman and Spinka"
|
||||
Grady Inc
|
||||
Reichert-Schroeder
|
||||
"Feeney, Koelpin and Reichel"
|
||||
"Denesik, Vandervort and Pacocha"
|
||||
Kilback-Johnston
|
||||
"Spencer, Koepp and Deckow"
|
||||
|
||||
"Sipes, Barrows and Labadie"
|
||||
"Weber, Prosacco and Watsica"
|
||||
Bauch-Brown
|
||||
"Krajcik, Romaguera and Langworth"
|
||||
"Gleichner, Kerluke and Koss"
|
||||
"Schumm, Bartell and Wehner"
|
||||
Aufderhar LLC
|
||||
"Huels, Prohaska and Gislason"
|
||||
"Trantow, Bosco and Stokes"
|
||||
"Emmerich, Lind and Cummings"
|
||||
Emmerich-Schumm
|
||||
"Kemmer, Schuster and Larson"
|
||||
|
||||
"Satterfield, Abshire and Ferry"
|
||||
|
||||
"Cronin, Dickinson and Koch"
|
||||
Marquardt-O'Conner
|
||||
Bednar-Luettgen
|
||||
Conroy-Wilkinson
|
||||
Langosh-Howe
|
||||
Breitenberg-Gerhold
|
||||
"Cummerata, Parisian and Hegmann"
|
||||
"Rice, Gutmann and Braun"
|
||||
"Haley, Barton and Zemlak"
|
||||
Considine-Miller
|
||||
"Deckow, Rogahn and VonRueden"
|
||||
"Lang, Gleason and Grady"
|
||||
Langworth and Sons
|
||||
Balistreri LLC
|
||||
Parisian-Pollich
|
||||
Jacobson Inc
|
||||
|
||||
Ferry-Torphy
|
||||
"Christiansen, Lang and Schaefer"
|
||||
Effertz LLC
|
||||
"Reichert, Murphy and Effertz"
|
||||
Trantow-Marvin
|
||||
Borer and Sons
|
||||
"Harber, Herman and Crooks"
|
||||
"Fritsch, Emmerich and Abshire"
|
||||
"Veum, Boyle and Hickle"
|
||||
Pfeffer-Klein
|
||||
"Kulas, Roberts and Flatley"
|
||||
Leannon-Grady
|
||||
"Streich, Mosciski and Reynolds"
|
||||
"Willms, Shields and Hoeger"
|
||||
Smitham-Mohr
|
||||
"Schowalter, O'Keefe and Reinger"
|
||||
Mante-Padberg
|
||||
Hills Inc
|
||||
Zemlak Group
|
||||
Kessler-Green
|
||||
"Corwin, Quigley and Bins"
|
||||
Terry-Reichert
|
||||
"Rau, Hodkiewicz and Daugherty"
|
||||
Macejkovic and Sons
|
||||
"Ondricka, Franecki and Schuppe"
|
||||
|
||||
Rice-Bayer
|
||||
Romaguera-Wuckert
|
||||
"Goyette, Hudson and Fay"
|
||||
"Ziemann, Kohler and Ryan"
|
||||
Dickinson-Greenfelder
|
||||
VonRueden Group
|
||||
|
||||
"Lowe, Sauer and Quigley"
|
||||
Krajcik and Sons
|
||||
"Marquardt, Dietrich and O'Hara"
|
||||
Romaguera-Pfannerstill
|
||||
Heller-Hammes
|
||||
"Parker, Mann and Towne"
|
||||
Wisozk LLC
|
||||
"Herman, Bauch and Hudson"
|
||||
"Hickle, Schamberger and Crona"
|
||||
"Marquardt, Ziemann and Nitzsche"
|
||||
Auer-Beatty
|
||||
Heller-Marks
|
||||
"Ritchie, Welch and Wuckert"
|
||||
Kertzmann and Sons
|
||||
"Oberbrunner, Gislason and Becker"
|
||||
Schuppe LLC
|
||||
Hammes-Schimmel
|
||||
"Walter, Quigley and Dicki"
|
||||
Raynor Inc
|
||||
Balistreri Group
|
||||
McKenzie and Sons
|
||||
O'Connell-Bode
|
||||
"Nolan, Crist and Doyle"
|
||||
Ebert Group
|
||||
Stanton and Sons
|
||||
Kiehn-Rohan
|
||||
@ -489,88 +325,62 @@ Collier and Sons
|
||||
Johns-Howe
|
||||
Hilll-Emard
|
||||
Douglas-Dietrich
|
||||
"Raynor, Price and Marvin"
|
||||
Quitzon Inc
|
||||
Olson-Schumm
|
||||
Larkin-Ruecker
|
||||
"Rowe, Turner and Moen"
|
||||
Feeney Group
|
||||
|
||||
Gislason LLC
|
||||
Lemke and Sons
|
||||
Hackett Group
|
||||
"Kihn, Ratke and Ledner"
|
||||
Moen Inc
|
||||
Murphy-Gottlieb
|
||||
"Runolfsson, Greenholt and Doyle"
|
||||
Barrows and Sons
|
||||
Dicki LLC
|
||||
Pollich-Weimann
|
||||
Stiedemann and Sons
|
||||
"Ferry, Durgan and Volkman"
|
||||
Ledner-Stanton
|
||||
"Volkman, Mosciski and Hagenes"
|
||||
Koepp-Carter
|
||||
Rice Group
|
||||
|
||||
White and Sons
|
||||
Jakubowski Inc
|
||||
|
||||
Daugherty-O'Reilly
|
||||
Morissette-Hickle
|
||||
Kutch-Senger
|
||||
Beier-Hand
|
||||
"Hudson, Kutch and Legros"
|
||||
Waters Inc
|
||||
Lang-Sporer
|
||||
Parisian Group
|
||||
Kuhn-Christiansen
|
||||
"Jakubowski, Wolff and O'Kon"
|
||||
Krajcik Inc
|
||||
Leuschke-Pacocha
|
||||
Jacobson Inc
|
||||
"Glover, Brown and Rau"
|
||||
D'Amore-Kertzmann
|
||||
Shields Group
|
||||
"Hyatt, Reynolds and Schuppe"
|
||||
Hauck Group
|
||||
Hilpert-Grimes
|
||||
"Stiedemann, Smitham and Block"
|
||||
Pacocha-Harvey
|
||||
Walsh-Krajcik
|
||||
"Koepp, Fay and Cummerata"
|
||||
Quigley-Miller
|
||||
Swaniawski LLC
|
||||
Miller-Cole
|
||||
"Maggio, Morissette and Schmeler"
|
||||
Gleason Group
|
||||
"Padberg, Cronin and Feest"
|
||||
"Steuber, Cole and O'Reilly"
|
||||
"Kub, Roberts and Leffler"
|
||||
Dooley-Witting
|
||||
Conroy LLC
|
||||
Parker Group
|
||||
Spinka Group
|
||||
Kunde-Wunsch
|
||||
|
||||
"Ullrich, Christiansen and Ebert"
|
||||
Corkery-Farrell
|
||||
Von-Metz
|
||||
O'Kon-Ratke
|
||||
"Mueller, Purdy and O'Reilly"
|
||||
Ondricka LLC
|
||||
"Quitzon, McLaughlin and Quigley"
|
||||
Stamm-Renner
|
||||
Lubowitz-Lehner
|
||||
Kshlerin-Larson
|
||||
Streich-Reichert
|
||||
Hackett-Medhurst
|
||||
"Lang, Reinger and Gerlach"
|
||||
"Casper, Hansen and Mills"
|
||||
"Lind, Schoen and Schmidt"
|
||||
Kozey-Stroman
|
||||
McDermott-Kuhic
|
||||
"Kuphal, Hettinger and Rippin"
|
||||
Willms-Farrell
|
||||
Konopelski-Romaguera
|
||||
Collier LLC
|
||||
@ -578,41 +388,29 @@ Carroll-Flatley
|
||||
Gerhold Group
|
||||
Stracke Group
|
||||
|
||||
O'Connell-Murazik
|
||||
Reynolds-Johns
|
||||
Gottlieb-Haag
|
||||
Cruickshank-Gusikowski
|
||||
Baumbach and Sons
|
||||
Dickinson-Ankunding
|
||||
"Armstrong, Yost and Jenkins"
|
||||
Schumm and Sons
|
||||
Kulas-Simonis
|
||||
"Lowe, Smitham and Quitzon"
|
||||
Ziemann-Haag
|
||||
Wunsch-Hilll
|
||||
"Monahan, Runolfsson and Maggio"
|
||||
Klocko-Kassulke
|
||||
"Champlin, Von and Ruecker"
|
||||
Satterfield-DuBuque
|
||||
"Bogan, Schowalter and Dach"
|
||||
Collier Inc
|
||||
Herzog-Denesik
|
||||
Gibson and Sons
|
||||
Miller LLC
|
||||
Hyatt LLC
|
||||
|
||||
"Kling, Hamill and Bailey"
|
||||
Walter Group
|
||||
DuBuque Inc
|
||||
"Cruickshank, Ullrich and Schultz"
|
||||
"Johns, Bayer and Stehr"
|
||||
"Auer, Waters and Hegmann"
|
||||
Reichert Group
|
||||
Hoppe Group
|
||||
Beier-Zieme
|
||||
"Dibbert, Schroeder and Tillman"
|
||||
Hammes Group
|
||||
"Homenick, Treutel and Hauck"
|
||||
Abshire-Bradtke
|
||||
Hegmann and Sons
|
||||
Schneider LLC
|
||||
@ -621,21 +419,14 @@ Larkin LLC
|
||||
Gislason-Cummings
|
||||
Hickle-Simonis
|
||||
Stokes-Bahringer
|
||||
"Metz, Kunde and Huels"
|
||||
"Lebsack, Sauer and VonRueden"
|
||||
"Orn, Watsica and Tremblay"
|
||||
Greenholt Inc
|
||||
Kozey Inc
|
||||
Berge-Shields
|
||||
"Hammes, Maggio and Purdy"
|
||||
"Simonis, Langworth and Anderson"
|
||||
Sauer-Hilpert
|
||||
Rau Inc
|
||||
Christiansen-Ortiz
|
||||
Windler-Schneider
|
||||
"Dickens, Legros and Auer"
|
||||
Waters Inc
|
||||
"Gusikowski, Schumm and Sporer"
|
||||
Bayer LLC
|
||||
Stokes Inc
|
||||
|
||||
@ -644,60 +435,43 @@ Buckridge-Schowalter
|
||||
|
||||
Frami and Sons
|
||||
Ruecker Group
|
||||
"O'Keefe, Kerluke and Glover"
|
||||
Bosco-Walter
|
||||
Hoeger-Reynolds
|
||||
Reilly-Stiedemann
|
||||
"Kilback, Watsica and Sipes"
|
||||
Krajcik LLC
|
||||
"Gutkowski, Ziemann and Bashirian"
|
||||
Terry-Hermann
|
||||
Kuhn-Baumbach
|
||||
Lebsack LLC
|
||||
"Lindgren, Olson and Franecki"
|
||||
"Bernhard, Bosco and Klocko"
|
||||
Hagenes-Gottlieb
|
||||
Kirlin Group
|
||||
|
||||
Klocko LLC
|
||||
Harvey-Daugherty
|
||||
"Stark, Hauck and Wolff"
|
||||
"Ziemann, Heidenreich and Witting"
|
||||
Torp-Rowe
|
||||
"Boehm, MacGyver and Gottlieb"
|
||||
Franecki LLC
|
||||
Padberg-Bechtelar
|
||||
Kling Inc
|
||||
Buckridge-Stamm
|
||||
"Fadel, Bode and Wyman"
|
||||
Kuphal and Sons
|
||||
|
||||
Stamm-Reichert
|
||||
Windler Group
|
||||
Turner LLC
|
||||
Lehner and Sons
|
||||
"Batz, Luettgen and MacGyver"
|
||||
Nader-Sipes
|
||||
"Witting, Berge and Ullrich"
|
||||
"Murray, Pagac and Donnelly"
|
||||
|
||||
"Howe, Jast and Quigley"
|
||||
Schuppe-Hettinger
|
||||
Nicolas LLC
|
||||
Metz and Sons
|
||||
Trantow-Hahn
|
||||
"Lebsack, Baumbach and Schaefer"
|
||||
Predovic-Johnston
|
||||
|
||||
Farrell and Sons
|
||||
"Hartmann, Cole and Shanahan"
|
||||
Heaney Inc
|
||||
Moen-Kassulke
|
||||
Keebler Inc
|
||||
Blanda-Herman
|
||||
"Bartoletti, Rempel and Bartoletti"
|
||||
Hand LLC
|
||||
"Wolf, Medhurst and Hilpert"
|
||||
White LLC
|
||||
Wintheiser Group
|
||||
Hahn-Treutel
|
||||
@ -705,54 +479,31 @@ Donnelly and Sons
|
||||
Homenick-Torp
|
||||
Beahan-Toy
|
||||
Moore-McDermott
|
||||
"Frami, Little and Murazik"
|
||||
Stark Group
|
||||
|
||||
"McLaughlin, Cormier and Rempel"
|
||||
Muller Group
|
||||
"Romaguera, Wunsch and Leuschke"
|
||||
Prosacco-Bogisich
|
||||
Connelly-Howell
|
||||
Farrell-O'Hara
|
||||
Dietrich-Toy
|
||||
Wolf and Sons
|
||||
"Gleichner, Zemlak and Lind"
|
||||
"Schimmel, Langworth and Deckow"
|
||||
"Hills, Pouros and Gutkowski"
|
||||
Conroy LLC
|
||||
"Kuhn, Strosin and Blick"
|
||||
"Fritsch, Hayes and Braun"
|
||||
Toy Inc
|
||||
Rippin Inc
|
||||
Hickle Group
|
||||
"Jaskolski, Macejkovic and Swaniawski"
|
||||
"Sanford, Skiles and Stroman"
|
||||
"Beatty, Heller and Hudson"
|
||||
Anderson LLC
|
||||
"Gottlieb, Gutkowski and Stroman"
|
||||
Ullrich Group
|
||||
Kutch Group
|
||||
Hudson Group
|
||||
Sauer Group
|
||||
Cruickshank-Harris
|
||||
"Wiza, McClure and Lang"
|
||||
"Franecki, Stanton and Jacobs"
|
||||
Schulist-Feest
|
||||
Marquardt Group
|
||||
Senger and Sons
|
||||
"Klocko, Runte and Bins"
|
||||
"Bode, Murray and Dicki"
|
||||
"Gerhold, Nikolaus and Blick"
|
||||
Bogisich-Kessler
|
||||
"DuBuque, Ernser and McLaughlin"
|
||||
"Dare, Murphy and Brekke"
|
||||
"Borer, Robel and Nitzsche"
|
||||
Jenkins-Zulauf
|
||||
Gleichner-McCullough
|
||||
Schamberger-Pfannerstill
|
||||
"Zemlak, Windler and Schaden"
|
||||
Reichert-McClure
|
||||
"Schultz, Little and Bergstrom"
|
||||
Kub-McCullough
|
||||
Cummerata-Hoeger
|
||||
Thiel Group
|
||||
@ -760,13 +511,10 @@ Little Inc
|
||||
Ondricka-Jast
|
||||
Dibbert LLC
|
||||
Auer and Sons
|
||||
"Larkin, Cremin and Wehner"
|
||||
"Goodwin, Heathcote and Koss"
|
||||
Murray-Kutch
|
||||
Dare-Streich
|
||||
Schroeder Group
|
||||
Gorczany Inc
|
||||
"Bernier, Dickinson and Gerlach"
|
||||
Kuhic-Von
|
||||
Wyman-Bins
|
||||
Weber and Sons
|
||||
@ -775,66 +523,41 @@ Padberg-Gislason
|
||||
Donnelly-Heaney
|
||||
Hayes-Weissnat
|
||||
Veum-Ankunding
|
||||
"Kunze, Marks and Stanton"
|
||||
|
||||
|
||||
"Shields, Rempel and Sipes"
|
||||
Walsh Inc
|
||||
"Lesch, Murazik and Schoen"
|
||||
"McLaughlin, Wunsch and Konopelski"
|
||||
Predovic-Reichert
|
||||
Spencer Inc
|
||||
Trantow-Murazik
|
||||
|
||||
Vandervort Inc
|
||||
"Baumbach, Ernser and Green"
|
||||
|
||||
Brown LLC
|
||||
Wiegand-Renner
|
||||
Boehm-Durgan
|
||||
Mayert Group
|
||||
Cummerata and Sons
|
||||
"Hyatt, Dicki and Dickinson"
|
||||
"Kovacek, Jakubowski and Swaniawski"
|
||||
Nolan-Boyer
|
||||
Pfannerstill Group
|
||||
Rutherford Inc
|
||||
"Pollich, Kling and Koss"
|
||||
Oberbrunner-Schumm
|
||||
Oberbrunner LLC
|
||||
"Paucek, O'Hara and Grimes"
|
||||
|
||||
|
||||
"O'Keefe, Cruickshank and Gutmann"
|
||||
Balistreri-Quitzon
|
||||
Mante-Bednar
|
||||
Friesen-Rempel
|
||||
"Rolfson, Gutkowski and Jenkins"
|
||||
"DuBuque, Luettgen and Hagenes"
|
||||
"Sipes, Jacobi and Monahan"
|
||||
"Lemke, Balistreri and Greenholt"
|
||||
Schumm Inc
|
||||
Pouros Inc
|
||||
Zboncak-Purdy
|
||||
"Hyatt, Weber and Corwin"
|
||||
Olson Inc
|
||||
Emmerich and Sons
|
||||
"Ebert, Gleichner and Pfeffer"
|
||||
"Denesik, Kreiger and Bashirian"
|
||||
Schneider and Sons
|
||||
"Bode, Swaniawski and Nicolas"
|
||||
"Goldner, Nitzsche and Fisher"
|
||||
Runte-Schoen
|
||||
"Kohler, Weissnat and Rempel"
|
||||
"Strosin, Langosh and Jacobs"
|
||||
Streich-Douglas
|
||||
Homenick-Simonis
|
||||
"Stokes, O'Kon and Larkin"
|
||||
"Murphy, Wuckert and Fahey"
|
||||
"Blanda, O'Connell and Lang"
|
||||
Schiller and Sons
|
||||
Spinka LLC
|
||||
"Jenkins, Harvey and Dibbert"
|
||||
Senger Inc
|
||||
Heller-Kling
|
||||
Ebert-Haley
|
||||
@ -848,63 +571,36 @@ Hayes-Roob
|
||||
Crist LLC
|
||||
Kerluke and Sons
|
||||
Jakubowski Group
|
||||
"Stiedemann, Denesik and Stroman"
|
||||
Sawayn-Bergnaum
|
||||
O'Keefe-Will
|
||||
"Jacobs, Watsica and Schultz"
|
||||
Stanton Inc
|
||||
"Cole, Hamill and Lemke"
|
||||
Lindgren-Rau
|
||||
Morissette-Haley
|
||||
"Gleason, Schowalter and Bogan"
|
||||
Daniel and Sons
|
||||
"Kunde, Collins and Jerde"
|
||||
Zboncak-Emard
|
||||
Predovic-Mann
|
||||
Kling Inc
|
||||
|
||||
McClure LLC
|
||||
"Pfannerstill, Rutherford and Stoltenberg"
|
||||
"Ebert, Hammes and Dare"
|
||||
Osinski-Bailey
|
||||
Mueller Inc
|
||||
McClure-Waters
|
||||
Hahn-Schulist
|
||||
Spencer and Sons
|
||||
Williamson-Goodwin
|
||||
"Krajcik, Reinger and Mertz"
|
||||
Zemlak Inc
|
||||
"Toy, Beer and Strosin"
|
||||
"Cremin, Deckow and Nicolas"
|
||||
Watsica-Schamberger
|
||||
"Rosenbaum, Wyman and Lueilwitz"
|
||||
"Turner, Von and Kilback"
|
||||
"O'Keefe, Gulgowski and Flatley"
|
||||
"Kuhn, Kirlin and Zemlak"
|
||||
Koelpin-Marquardt
|
||||
Connelly and Sons
|
||||
Bradtke Inc
|
||||
"Baumbach, Ward and Hintz"
|
||||
Cronin Group
|
||||
"Howe, Kris and Pfeffer"
|
||||
"Witting, Hansen and Collier"
|
||||
"Abernathy, Cartwright and Ruecker"
|
||||
Donnelly Group
|
||||
"Deckow, Gibson and Wolf"
|
||||
"Goyette, McClure and Kutch"
|
||||
Schmitt Group
|
||||
"Dooley, Brakus and Boyle"
|
||||
"Lesch, Reynolds and Metz"
|
||||
Hermann-King
|
||||
Stamm-Littel
|
||||
Shields Group
|
||||
Rippin-Wiegand
|
||||
Cremin Group
|
||||
"Aufderhar, Bogisich and Kemmer"
|
||||
Balistreri-McCullough
|
||||
O'Kon-Baumbach
|
||||
"Boehm, Smitham and Maggio"
|
||||
"Bruen, Bode and Deckow"
|
||||
Howe-Runolfsdottir
|
||||
|
||||
Zemlak Group
|
||||
@ -915,13 +611,9 @@ Auer Group
|
||||
Keebler-Hyatt
|
||||
Schmitt-Ratke
|
||||
|
||||
"Bayer, Wisozk and Hessel"
|
||||
"Cummings, Harvey and Windler"
|
||||
Price-Bins
|
||||
"Pfeffer, Abshire and Barton"
|
||||
Vandervort Group
|
||||
Emard-Powlowski
|
||||
"Mertz, Veum and Walker"
|
||||
Harvey Inc
|
||||
Tillman Inc
|
||||
Kris LLC
|
||||
@ -929,73 +621,43 @@ Fisher and Sons
|
||||
Morissette LLC
|
||||
Willms LLC
|
||||
Strosin-Howe
|
||||
"Koelpin, Reilly and Hoeger"
|
||||
Thompson Inc
|
||||
Kihn Group
|
||||
Donnelly and Sons
|
||||
Labadie Group
|
||||
Gerhold and Sons
|
||||
Murray Inc
|
||||
"Hamill, Jacobs and Wyman"
|
||||
Kirlin-Lemke
|
||||
"Maggio, Daugherty and Huels"
|
||||
O'Keefe Inc
|
||||
Torphy-Lockman
|
||||
Reinger Inc
|
||||
Schuster-Jaskolski
|
||||
Huels-Tromp
|
||||
Wehner-Harber
|
||||
"Blick, Hermiston and Volkman"
|
||||
Leuschke Inc
|
||||
"Hirthe, Cummerata and Pacocha"
|
||||
"Pagac, Emard and Becker"
|
||||
|
||||
|
||||
Volkman-Kertzmann
|
||||
Gerlach-Toy
|
||||
Casper-Ondricka
|
||||
|
||||
"Brekke, Kuhn and Lesch"
|
||||
Wolf Inc
|
||||
"Klocko, Medhurst and Schmidt"
|
||||
"Hirthe, Dicki and D'Amore"
|
||||
"Kertzmann, Harber and Hammes"
|
||||
Wisozk Group
|
||||
"Kuphal, Hessel and Daugherty"
|
||||
O'Kon LLC
|
||||
"Wunsch, Koss and Boyer"
|
||||
"Howell, Dickinson and Kuhlman"
|
||||
Wuckert Inc
|
||||
"Mueller, Ferry and DuBuque"
|
||||
Effertz Group
|
||||
Schuppe and Sons
|
||||
"McClure, Goyette and O'Connell"
|
||||
"Mohr, Towne and Corwin"
|
||||
|
||||
"Schaden, Hansen and Flatley"
|
||||
Rodriguez LLC
|
||||
Goldner-Purdy
|
||||
Welch Inc
|
||||
"Mills, Barton and Kovacek"
|
||||
"Mann, Kreiger and Jacobson"
|
||||
Mann-Kling
|
||||
|
||||
"Bosco, Pagac and Ritchie"
|
||||
"Runte, Dooley and Stokes"
|
||||
Heidenreich and Sons
|
||||
Williamson-Barton
|
||||
McDermott-Dickinson
|
||||
Torp-Vandervort
|
||||
Wisozk Group
|
||||
Reichert and Sons
|
||||
"Friesen, Paucek and Waelchi"
|
||||
Kirlin-Greenholt
|
||||
"Schumm, Hettinger and Howell"
|
||||
"Stark, Beier and Bahringer"
|
||||
"Macejkovic, Greenholt and Herzog"
|
||||
"Paucek, McDermott and Armstrong"
|
||||
Volkman Inc
|
||||
Braun-Greenholt
|
||||
"Schulist, Glover and D'Amore"
|
||||
Schmeler-Beatty
|
||||
"Hoeger, Corkery and Doyle"
|
||||
|
|
@ -1,6 +1,5 @@
|
||||
date
|
||||
01/15/2011
|
||||
|
||||
01/02/1973
|
||||
06/02/2004
|
||||
08/01/2022
|
||||
@ -16,7 +15,6 @@ date
|
||||
12/07/2007
|
||||
05/09/2020
|
||||
05/12/2012
|
||||
|
||||
10/03/2000
|
||||
04/14/1986
|
||||
09/04/1997
|
||||
@ -58,7 +56,6 @@ date
|
||||
04/21/1976
|
||||
06/28/1975
|
||||
06/11/1984
|
||||
|
||||
03/22/2016
|
||||
04/30/2016
|
||||
05/06/2001
|
||||
@ -70,21 +67,17 @@ date
|
||||
08/22/1982
|
||||
04/17/1975
|
||||
10/16/2010
|
||||
|
||||
02/11/1988
|
||||
05/12/2006
|
||||
09/11/2006
|
||||
04/01/1983
|
||||
|
||||
03/19/2018
|
||||
06/13/1986
|
||||
10/25/2020
|
||||
12/17/2012
|
||||
06/10/2004
|
||||
|
||||
04/18/2018
|
||||
01/29/2006
|
||||
|
||||
07/10/1980
|
||||
02/27/1985
|
||||
08/06/1992
|
||||
@ -124,7 +117,6 @@ date
|
||||
10/17/1988
|
||||
07/29/2019
|
||||
10/21/1990
|
||||
|
||||
06/29/1999
|
||||
12/11/1995
|
||||
07/31/2015
|
||||
@ -157,8 +149,6 @@ date
|
||||
01/15/2001
|
||||
02/25/1987
|
||||
06/05/2005
|
||||
|
||||
|
||||
06/17/1983
|
||||
01/31/1987
|
||||
08/03/1981
|
||||
@ -190,13 +180,11 @@ date
|
||||
04/02/2015
|
||||
04/05/2010
|
||||
10/05/1982
|
||||
|
||||
12/30/1976
|
||||
05/27/1980
|
||||
08/15/1976
|
||||
01/05/1975
|
||||
01/02/1994
|
||||
|
||||
09/23/2024
|
||||
11/12/2020
|
||||
11/22/2020
|
||||
@ -219,8 +207,6 @@ date
|
||||
02/01/2023
|
||||
06/11/1972
|
||||
02/28/1977
|
||||
|
||||
|
||||
05/07/2013
|
||||
06/25/1990
|
||||
11/13/1994
|
||||
@ -278,7 +264,6 @@ date
|
||||
09/11/1970
|
||||
09/25/1998
|
||||
09/19/1986
|
||||
|
||||
11/01/1980
|
||||
03/25/1988
|
||||
08/01/1974
|
||||
@ -304,14 +289,10 @@ date
|
||||
06/25/1976
|
||||
03/09/1998
|
||||
10/08/2008
|
||||
|
||||
03/28/1981
|
||||
|
||||
07/21/1991
|
||||
02/03/2022
|
||||
01/25/1995
|
||||
|
||||
|
||||
11/02/2007
|
||||
02/20/1987
|
||||
08/05/1992
|
||||
@ -326,14 +307,12 @@ date
|
||||
04/19/1989
|
||||
09/16/1998
|
||||
09/11/1998
|
||||
|
||||
06/04/1982
|
||||
09/09/1989
|
||||
01/09/1983
|
||||
03/25/1981
|
||||
11/03/2005
|
||||
02/06/1970
|
||||
|
||||
10/13/2011
|
||||
11/04/1975
|
||||
03/12/2004
|
||||
@ -343,7 +322,6 @@ date
|
||||
07/27/1991
|
||||
05/09/1984
|
||||
11/20/1989
|
||||
|
||||
12/23/1981
|
||||
07/20/1984
|
||||
11/24/1976
|
||||
@ -362,7 +340,6 @@ date
|
||||
07/15/1988
|
||||
12/25/1982
|
||||
06/28/2000
|
||||
|
||||
09/11/1983
|
||||
07/28/1978
|
||||
04/23/2016
|
||||
@ -383,7 +360,6 @@ date
|
||||
03/24/1984
|
||||
11/10/1969
|
||||
03/04/1989
|
||||
|
||||
04/23/2009
|
||||
02/16/2020
|
||||
12/18/1984
|
||||
@ -410,7 +386,6 @@ date
|
||||
06/02/1977
|
||||
03/20/2024
|
||||
06/29/2000
|
||||
|
||||
09/19/1995
|
||||
10/06/2020
|
||||
04/18/1997
|
||||
@ -424,7 +399,6 @@ date
|
||||
12/03/1976
|
||||
06/21/2012
|
||||
06/23/2019
|
||||
|
||||
01/14/2019
|
||||
09/21/2002
|
||||
03/13/2004
|
||||
@ -490,7 +464,6 @@ date
|
||||
09/19/2013
|
||||
09/15/1994
|
||||
08/18/1993
|
||||
|
||||
09/11/1998
|
||||
03/02/2016
|
||||
07/18/2012
|
||||
@ -502,12 +475,9 @@ date
|
||||
03/21/1987
|
||||
06/12/2014
|
||||
07/19/1987
|
||||
|
||||
|
||||
03/15/2021
|
||||
10/27/1992
|
||||
12/11/1990
|
||||
|
||||
12/04/2017
|
||||
07/29/1979
|
||||
10/24/1979
|
||||
@ -517,7 +487,6 @@ date
|
||||
05/22/2002
|
||||
11/19/1985
|
||||
01/29/2004
|
||||
|
||||
05/02/2008
|
||||
03/20/1980
|
||||
05/10/1990
|
||||
@ -548,7 +517,6 @@ date
|
||||
07/06/1982
|
||||
06/25/2015
|
||||
01/25/2001
|
||||
|
||||
03/07/1988
|
||||
11/17/1987
|
||||
10/29/1991
|
||||
@ -576,14 +544,11 @@ date
|
||||
11/21/1995
|
||||
09/21/2020
|
||||
07/03/1991
|
||||
|
||||
01/11/1985
|
||||
02/06/1993
|
||||
|
||||
09/03/2007
|
||||
05/19/1973
|
||||
04/02/1973
|
||||
|
||||
07/18/2021
|
||||
05/06/1970
|
||||
06/30/1980
|
||||
@ -599,7 +564,6 @@ date
|
||||
12/20/1992
|
||||
04/04/2008
|
||||
01/08/1986
|
||||
|
||||
01/28/2011
|
||||
10/10/2010
|
||||
12/21/2003
|
||||
@ -649,7 +613,6 @@ date
|
||||
01/11/1990
|
||||
11/03/2005
|
||||
06/27/2000
|
||||
|
||||
01/14/2015
|
||||
09/11/2024
|
||||
04/30/1997
|
||||
@ -661,7 +624,6 @@ date
|
||||
07/12/1981
|
||||
05/25/2005
|
||||
04/03/1985
|
||||
|
||||
09/30/1992
|
||||
04/17/1983
|
||||
01/17/2003
|
||||
@ -696,7 +658,6 @@ date
|
||||
11/14/1978
|
||||
04/06/2012
|
||||
11/18/1981
|
||||
|
||||
01/06/1982
|
||||
05/08/1995
|
||||
07/12/2006
|
||||
@ -704,14 +665,11 @@ date
|
||||
12/05/1987
|
||||
01/14/2005
|
||||
09/25/1978
|
||||
|
||||
05/09/1997
|
||||
09/11/1998
|
||||
02/03/1990
|
||||
|
||||
05/28/1990
|
||||
03/26/1999
|
||||
|
||||
02/17/2000
|
||||
07/19/2007
|
||||
02/29/1992
|
||||
@ -719,16 +677,13 @@ date
|
||||
04/24/2017
|
||||
03/15/2010
|
||||
11/21/2020
|
||||
|
||||
10/22/2003
|
||||
02/03/1983
|
||||
|
||||
02/26/1971
|
||||
09/19/1996
|
||||
08/10/1974
|
||||
10/25/2003
|
||||
12/04/2019
|
||||
|
||||
07/12/2004
|
||||
05/29/1997
|
||||
12/18/1980
|
||||
@ -736,7 +691,6 @@ date
|
||||
10/13/1993
|
||||
06/01/1977
|
||||
09/14/1983
|
||||
|
||||
01/14/1979
|
||||
07/20/2017
|
||||
01/14/1993
|
||||
@ -757,7 +711,6 @@ date
|
||||
08/25/1984
|
||||
09/10/2008
|
||||
09/15/1990
|
||||
|
||||
08/05/2002
|
||||
02/17/2024
|
||||
02/17/1972
|
||||
@ -766,7 +719,6 @@ date
|
||||
10/13/2000
|
||||
08/25/2019
|
||||
06/13/1993
|
||||
|
||||
09/29/1987
|
||||
06/07/2003
|
||||
02/14/1986
|
||||
@ -789,7 +741,6 @@ date
|
||||
05/31/1992
|
||||
11/21/1969
|
||||
05/31/2022
|
||||
|
||||
06/09/1984
|
||||
06/15/2014
|
||||
07/23/1994
|
||||
@ -812,7 +763,6 @@ date
|
||||
11/14/1982
|
||||
02/13/1973
|
||||
12/29/1979
|
||||
|
||||
03/29/2005
|
||||
09/30/1970
|
||||
02/27/1982
|
||||
@ -841,11 +791,9 @@ date
|
||||
07/26/1986
|
||||
04/07/1976
|
||||
08/13/1989
|
||||
|
||||
12/30/2015
|
||||
04/04/2003
|
||||
08/26/1991
|
||||
|
||||
03/06/1992
|
||||
01/27/1987
|
||||
02/04/1986
|
||||
@ -875,12 +823,10 @@ date
|
||||
05/13/1975
|
||||
10/05/2011
|
||||
11/17/2020
|
||||
|
||||
10/01/1971
|
||||
10/05/1987
|
||||
11/06/1973
|
||||
04/23/1995
|
||||
|
||||
12/16/1996
|
||||
12/20/1985
|
||||
08/15/1980
|
||||
@ -928,7 +874,6 @@ date
|
||||
03/17/2001
|
||||
09/18/1997
|
||||
12/13/2014
|
||||
|
||||
04/15/2024
|
||||
11/26/2009
|
||||
10/22/2000
|
||||
@ -937,7 +882,6 @@ date
|
||||
09/22/2016
|
||||
11/06/1969
|
||||
07/28/1995
|
||||
|
||||
12/26/1995
|
||||
10/23/2005
|
||||
02/20/1988
|
||||
@ -968,7 +912,6 @@ date
|
||||
11/15/1971
|
||||
02/13/2000
|
||||
01/31/1989
|
||||
|
||||
03/22/1974
|
||||
06/26/2021
|
||||
07/19/1999
|
||||
|
|
@ -47,7 +47,6 @@ Bruna
|
||||
Hembry
|
||||
Prandi
|
||||
Humbatch
|
||||
O'Spillane
|
||||
Stilgoe
|
||||
Puttock
|
||||
Klima
|
||||
@ -73,7 +72,6 @@ Esposito
|
||||
Stoggell
|
||||
Bernardotte
|
||||
Ucceli
|
||||
O'Day
|
||||
Swadlin
|
||||
Pawlyn
|
||||
Langstone
|
||||
@ -130,12 +128,10 @@ Elmes
|
||||
Edeler
|
||||
Kemster
|
||||
Maskell
|
||||
O'Griffin
|
||||
Braunthal
|
||||
Penylton
|
||||
Tidbold
|
||||
Hooke
|
||||
O'Dowgaine
|
||||
Domingues
|
||||
Roget
|
||||
Amdohr
|
||||
@ -297,7 +293,6 @@ Bridson
|
||||
Clines
|
||||
|
||||
Thebe
|
||||
O' Hogan
|
||||
Burg
|
||||
Cumbers
|
||||
Snalham
|
||||
@ -306,7 +301,6 @@ Raffles
|
||||
Viggars
|
||||
Brok
|
||||
Geistmann
|
||||
O' Reagan
|
||||
Scutter
|
||||
Kelsall
|
||||
Degenhardt
|
||||
@ -416,7 +410,6 @@ Ballston
|
||||
Thatcher
|
||||
Sydney
|
||||
Jahn
|
||||
O'Leagham
|
||||
Stokell
|
||||
Calfe
|
||||
Akker
|
||||
@ -505,7 +498,6 @@ Meeus
|
||||
Iacovini
|
||||
Hollow
|
||||
Latham
|
||||
O'Sirin
|
||||
Skoggings
|
||||
Simmens
|
||||
Durbyn
|
||||
@ -531,7 +523,6 @@ Pavlitschek
|
||||
Debill
|
||||
Bennellick
|
||||
Piburn
|
||||
O'Kenny
|
||||
Monini
|
||||
Sacchetti
|
||||
Cicchillo
|
||||
@ -637,7 +628,6 @@ Roadknight
|
||||
Eltune
|
||||
Gallear
|
||||
|
||||
M'Quharge
|
||||
Stonestreet
|
||||
Clewett
|
||||
Confort
|
||||
@ -654,7 +644,6 @@ Lieber
|
||||
Stratten
|
||||
Lantaph
|
||||
Renfield
|
||||
O'Dee
|
||||
Vampouille
|
||||
McSparran
|
||||
Hargitt
|
||||
@ -826,7 +815,6 @@ Cumbridge
|
||||
Scadden
|
||||
Pate
|
||||
Fike
|
||||
O'Roan
|
||||
Magauran
|
||||
Ramsden
|
||||
Hilley
|
||||
@ -907,13 +895,11 @@ Wicks
|
||||
Anderl
|
||||
Baldin
|
||||
Webermann
|
||||
O'Loughlin
|
||||
Cheney
|
||||
Kernar
|
||||
Balazin
|
||||
|
||||
Sidry
|
||||
O'Kieran
|
||||
Beecham
|
||||
Sollas
|
||||
Casotti
|
||||
|
|
@ -4,6 +4,7 @@
|
||||
|
||||
DROP TABLE IF EXISTS acheter CASCADE;
|
||||
DROP TABLE IF EXISTS avoir_motif CASCADE;
|
||||
DROP TABLE IF EXISTS avoir_tag CASCADE;
|
||||
DROP TABLE IF EXISTS boites CASCADE;
|
||||
DROP TABLE IF EXISTS colorer CASCADE;
|
||||
DROP TABLE IF EXISTS construire CASCADE;
|
||||
@ -16,14 +17,15 @@ DROP TABLE IF EXISTS etre_forme CASCADE;
|
||||
DROP TABLE IF EXISTS fils CASCADE;
|
||||
DROP TABLE IF EXISTS illustrations CASCADE;
|
||||
DROP TABLE IF EXISTS marques CASCADE;
|
||||
DROP TABLE IF EXISTS membres CASCADE;
|
||||
DROP TABLE IF EXISTS messages CASCADE;
|
||||
DROP TABLE IF EXISTS modeles CASCADE;
|
||||
DROP TABLE IF EXISTS necessiter CASCADE;
|
||||
DROP TABLE IF EXISTS noter CASCADE;
|
||||
DROP TABLE IF EXISTS perdre CASCADE;
|
||||
DROP TABLE IF EXISTS tags CASCADE;
|
||||
DROP TABLE IF EXISTS varier CASCADE;
|
||||
DROP TABLE IF EXISTS formes CASCADE;
|
||||
DROP TABLE IF EXISTS membres CASCADE;
|
||||
DROP TABLE IF EXISTS motifs CASCADE;
|
||||
DROP TABLE IF EXISTS pieces CASCADE;
|
||||
DROP TABLE IF EXISTS pieces_complexes CASCADE;
|
||||
|
@ -109,7 +109,7 @@ def generate_line_contenir() -> str:
|
||||
|
||||
def generate_line_couleurs() -> str:
|
||||
idCouleur : str = random_element(pathIntegers)
|
||||
nomCouleur : str = random_element(pathColors)
|
||||
nomCouleur : str = "\'" + random_element(pathColors) + "\'"
|
||||
|
||||
return construct_line(idCouleur, nomCouleur)
|
||||
|
||||
@ -146,26 +146,27 @@ def generate_line_fils() -> str:
|
||||
|
||||
def generate_line_illustrations() -> str:
|
||||
idIllustr : str = random_element(pathIntegers)
|
||||
urlIllustr : str = random_element(pathUrls)
|
||||
urlIllustr : str = "\'" + random_element(pathUrls) + "\'"
|
||||
idModele : str = random_element(pathIntegers)
|
||||
|
||||
return construct_line(idIllustr, urlIllustr, idModele)
|
||||
|
||||
def generate_line_marques() -> str:
|
||||
idMarque : str = random_element(pathIntegers)
|
||||
nomMarque : str = random_element(pathBrands)
|
||||
nomMarque : str = "\'" + random_element(pathBrands) + "\'"
|
||||
|
||||
return construct_line(idMarque, nomMarque)
|
||||
|
||||
def generate_line_membres() -> str:
|
||||
idMembre : str = random_element(pathIntegers)
|
||||
nomMembre : str = random_element(pathNames)
|
||||
nomMembre : str = "\'" + random_element(pathNames) + "\'"
|
||||
|
||||
return construct_line(idMembre, nomMembre)
|
||||
|
||||
def generate_line_messages() -> str:
|
||||
idMessages : str = random_element(pathIntegers)
|
||||
contenu : str = random_element(pathSentences)
|
||||
contenu : str = "\'" + random_element(pathSentences) + "\'"
|
||||
id_membre : str = random_element(pathIntegers)
|
||||
idFil : str = random_element(pathIntegers)
|
||||
idMessages2 : str = random_element(pathIntegers)
|
||||
|
||||
@ -173,8 +174,8 @@ def generate_line_messages() -> str:
|
||||
|
||||
def generate_line_modeles() -> str:
|
||||
idModele : str = random_element(pathIntegers)
|
||||
nomModele : str = random_element(pathNameModels)
|
||||
urlNotice : str = random_element(pathUrls)
|
||||
nomModele : str = "\'" + random_element(pathNameModels) + "\'"
|
||||
urlNotice : str = "\'" + random_element(pathUrls) + "\'"
|
||||
idMembre : str = random_element(pathIntegers)
|
||||
idModeleEte : str = random_element(pathIntegers)
|
||||
|
||||
@ -191,7 +192,7 @@ def generate_line_necessiter() -> str:
|
||||
def generate_line_noter() -> str:
|
||||
idModele : str = random_element(pathIntegers)
|
||||
idMembre : str = random_element(pathIntegers)
|
||||
note : str = random_element(pathSentences)
|
||||
note : str = "\'" + random_element(pathSentences) + "\'"
|
||||
|
||||
return construct_line(idModele, idMembre, note)
|
||||
|
||||
@ -205,15 +206,37 @@ def generate_line_perdre() -> str:
|
||||
|
||||
def generate_line_tags() -> str:
|
||||
idTag : str = random_element(pathIntegers)
|
||||
nomTag : str = random_element(pathWords)
|
||||
nomTag : str = "\'" + random_element(pathWords) + "\'"
|
||||
|
||||
return construct_line(idTag, nomTag)
|
||||
|
||||
def generate_line_varier() -> str:
|
||||
idModele_1 : str = random_element(pathIntegers)
|
||||
idModele_2 : str = random_element(pathWords)
|
||||
idModele_et : str = random_element(pathIntegers)
|
||||
|
||||
return construct_line(idModele_1, idModele_2)
|
||||
return construct_line(idModele_1, idModele_et)
|
||||
|
||||
def generate_line_formes() -> str:
|
||||
idForme : str = random_element(pathIntegers)
|
||||
nomForme : str = "\'" + random_element(pathWords) + "\'"
|
||||
|
||||
return construct_line(idForme, nomForme)
|
||||
|
||||
def generate_line_motifs() -> str:
|
||||
idMotif : str = random_element(pathIntegers)
|
||||
nomMotif : str = "\'" + random_element(pathWords) + "\'"
|
||||
|
||||
return construct_line(idMotif, nomMotif)
|
||||
|
||||
def generate_line_pieces() -> str:
|
||||
idPiece : str = random_element(pathIntegers)
|
||||
|
||||
return construct_line(idPiece)
|
||||
|
||||
def generate_line_pieces_complexes() -> str:
|
||||
idPieceCo : str = random_element(pathIntegers)
|
||||
|
||||
return construct_line(idPieceCo)
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
@ -243,7 +266,13 @@ def store_table(nbLines : int, pathFile : str, funcGenerationLine) -> None:
|
||||
#
|
||||
###############################################################################
|
||||
|
||||
# TODO
|
||||
# Need to do it manually, otherwire it is too hard.
|
||||
|
||||
# Step 1 : remove the duplicated primary keys,
|
||||
# if there are 2 objects with the same primary key.
|
||||
|
||||
# Step 2 : remove the lines that have a foreign key that does not exist.
|
||||
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
@ -280,29 +309,33 @@ def convert_table_to_sql(pathFile : str, nameTable : str) -> None:
|
||||
###############################################################################
|
||||
|
||||
dictTables : dict = {
|
||||
"Acheter" : generate_line_acheter,
|
||||
"Avoir_motif" : generate_line_avoir_motif,
|
||||
"Avoir_tag" : generate_line_avoir_tag,
|
||||
"Boites" : generate_line_boites,
|
||||
"Colorer" : generate_line_colorer,
|
||||
"Construire" : generate_line_construire,
|
||||
"Contenir" : generate_line_contenir,
|
||||
"Couleurs" : generate_line_couleurs,
|
||||
"Enregistrer" : generate_line_enregistrer,
|
||||
"Etre" : generate_line_etre,
|
||||
"Etre_complexe" : generate_line_etre_complexe,
|
||||
"Etre_forme" : generate_line_etre_forme,
|
||||
"Fils" : generate_line_fils,
|
||||
"Illustrations" : generate_line_illustrations,
|
||||
"Marques" : generate_line_marques,
|
||||
"Membres" : generate_line_membres,
|
||||
"Messages" : generate_line_messages,
|
||||
"Modeles" : generate_line_modeles,
|
||||
"Necessiter" : generate_line_necessiter,
|
||||
"Noter" : generate_line_noter,
|
||||
"Perdre" : generate_line_perdre,
|
||||
"Tags" : generate_line_tags,
|
||||
"Varier" : generate_line_varier
|
||||
"acheter" : generate_line_acheter,
|
||||
"avoir_motif" : generate_line_avoir_motif,
|
||||
"avoir_tag" : generate_line_avoir_tag,
|
||||
"boites" : generate_line_boites,
|
||||
"colorer" : generate_line_colorer,
|
||||
"construire" : generate_line_construire,
|
||||
"contenir" : generate_line_contenir,
|
||||
"couleurs" : generate_line_couleurs,
|
||||
"enregistrer" : generate_line_enregistrer,
|
||||
"etre" : generate_line_etre,
|
||||
"etre_complexe" : generate_line_etre_complexe,
|
||||
"etre_forme" : generate_line_etre_forme,
|
||||
"fils" : generate_line_fils,
|
||||
"illustrations" : generate_line_illustrations,
|
||||
"marques" : generate_line_marques,
|
||||
"membres" : generate_line_membres,
|
||||
"messages" : generate_line_messages,
|
||||
"modeles" : generate_line_modeles,
|
||||
"necessiter" : generate_line_necessiter,
|
||||
"noter" : generate_line_noter,
|
||||
"perdre" : generate_line_perdre,
|
||||
"tags" : generate_line_tags,
|
||||
"varier" : generate_line_varier,
|
||||
"formes" : generate_line_formes,
|
||||
"motifs" : generate_line_motifs,
|
||||
"pieces" : generate_line_pieces,
|
||||
"pieces_complexes" : generate_line_pieces_complexes
|
||||
}
|
||||
|
||||
###############################################################################
|
||||
@ -316,7 +349,7 @@ def givePathFile(nameTable : str) -> str:
|
||||
if __name__ == '__main__':
|
||||
# Uncomment if you want to generate data.
|
||||
for nameTable in dictTables:
|
||||
store_table(1000, givePathFile(nameTable), dictTables[nameTable])
|
||||
store_table(200, givePathFile(nameTable), dictTables[nameTable])
|
||||
|
||||
fileSql = open("insert.sql", 'w+')
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user