diff --git a/client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html b/client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html index 06fd9833a..84c78c457 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html +++ b/client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html @@ -47,7 +47,9 @@ inputName="autoPlayVideo" formControlName="autoPlayVideo" i18n-labelText labelText="Automatically plays video" > + +
{ + { + const data = { + type: Sequelize.BOOLEAN, + allowNull: false, + defaultValue: false + } + + await utils.queryInterface.addColumn('user', 'autoPlayNextVideo', data) + } +} + +function down (options) { + throw new Error('Not implemented.') +} + +export { + up, + down +}