Showing
2 changed files
with
9 additions
and
1 deletions
1 | source normalizePays.sql | 1 | source normalizePays.sql |
2 | source populateV3Country.sql | 2 | source populateV3Country.sql |
3 | -source populateV3Publisher+Version+Action.sql | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
3 | +source populateV3Publisher+Version+Action.sql | ||
4 | +source populateV3Account.sql | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
migration/populateV3Account.sql
0 → 100644
1 | +tee populateV3Account.log | ||
2 | + | ||
3 | +insert into Account (userId, username, firstName, lastName, nickname, email, anonymous, visible, activated, | ||
4 | + presentation, creationDate, criticProvider) | ||
5 | +select ID_UTILISATEUR, LOGIN_UTILISATEUR, PRENOM_UTILISATEUR, NOM_UTILISATEUR, PSEUDO_UTILISATEUR, | ||
6 | + EMAIL_UTILISATEUR, IND_ANONYME, IND_VISIBLE, IND_ACTIVE, PRESENTATION, DATE_ENREGISTREMENT, IND_CRITIQUES | ||
7 | +from v2.utilisateur; |
-
Please register or login to post a comment