Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Міграція bb_bt_users_dl_status #97

Closed
yukoff opened this issue Aug 2, 2017 · 5 comments · May be fixed by #74
Closed

Міграція bb_bt_users_dl_status #97

yukoff opened this issue Aug 2, 2017 · 5 comments · May be fixed by #74

Comments

@yukoff
Copy link
Contributor

yukoff commented Aug 2, 2017

Стосується #7/#46 - в старій версії таблиця bb_bt_users_dl_status є, в новій немає

@yukoff
Copy link
Contributor Author

yukoff commented Aug 4, 2017

@konfuciusu Я так розумію, таблиця переїжджає "як є"?

@konfuciusu
Copy link
Contributor

Відповідник в TP2: bb_bt_dlstatus
зберегти: compl_count
викинути: drop_release

@yukoff
Copy link
Contributor Author

yukoff commented Aug 12, 2017

@konfuciusu Наразі в bb_bt_users_dl_status.update_time зберігається тип даних int(11) (ще й знаковий) - я правильно розумію, що це unixtime (себто секунди)? Відповідник в новій наче bb_bt_dlstatus.last_modified_dlstatus, але тут DATETIME, отже треба конвертувати.

yukoff added a commit to yukoff/toloka that referenced this issue Aug 12, 2017
@konfuciusu
Copy link
Contributor

@yukoff все правильно

@yukoff
Copy link
Contributor Author

yukoff commented Aug 14, 2017

Ну тоді по цьому все, додав до #74. Через необхідність конвертації треба буде робити

INSERT INTO bb_bt_dlstatus
    (user_id, topic_id, user_status, compl_count, last_modified_dlstatus)
SELECT
    user_id,
    topic_id,
    user_status,
    compl_count,
    FROM_UNIXTIME(update_time)
FROM bb_bt_users_dl_status;

@yukoff yukoff closed this as completed Aug 14, 2017
@ghost ghost removed the needs review label Aug 14, 2017
yukoff added a commit to yukoff/toloka that referenced this issue Aug 14, 2017
yukoff added a commit to yukoff/toloka that referenced this issue Aug 20, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
2 participants