Toggle navigation
Toggle navigation
This project
Loading...
Sign in
grogv3
/
grog-cubi
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jean-Francois Leveque
2017-02-16 16:37:02 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fe8b74b5c4609cc0b9d5a621829cc0d6750adfc9
fe8b74b5
1 parent
f4a8c96f
Inclusion des comptes dans la migration
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
migration/migration.sql
migration/populateV3Account.sql
migration/migration.sql
View file @
fe8b74b
source
normalizePays
.
sql
source
populateV3Country
.
sql
source
populateV3Publisher
+
Version
+
Action
.
sql
\ No newline at end of file
source
populateV3Publisher
+
Version
+
Action
.
sql
source
populateV3Account
.
sql
\ No newline at end of file
...
...
migration/populateV3Account.sql
0 → 100644
View file @
fe8b74b
tee
populateV3Account
.
log
insert
into
Account
(
userId
,
username
,
firstName
,
lastName
,
nickname
,
email
,
anonymous
,
visible
,
activated
,
presentation
,
creationDate
,
criticProvider
)
select
ID_UTILISATEUR
,
LOGIN_UTILISATEUR
,
PRENOM_UTILISATEUR
,
NOM_UTILISATEUR
,
PSEUDO_UTILISATEUR
,
EMAIL_UTILISATEUR
,
IND_ANONYME
,
IND_VISIBLE
,
IND_ACTIVE
,
PRESENTATION
,
DATE_ENREGISTREMENT
,
IND_CRITIQUES
from
v2
.
utilisateur
;
Please
register
or
login
to post a comment