Add initial Amazon Music support
This commit is contained in:
parent
bd85678303
commit
b0fcf55071
25 changed files with 248 additions and 222 deletions
|
@ -3,6 +3,7 @@ export default function (sequelize, DataTypes) {
|
|||
id: { type: DataTypes.INTEGER, primaryKey: true, autoIncrement: true },
|
||||
externalId: { type: DataTypes.STRING(50), index: true }, // eslint-disable-line new-cap
|
||||
service: DataTypes.ENUM( // eslint-disable-line new-cap
|
||||
'amazon',
|
||||
'deezer',
|
||||
'google',
|
||||
'itunes',
|
||||
|
|
|
@ -5,6 +5,7 @@ export default function (sequelize, DataTypes) {
|
|||
albumId: DataTypes.INTEGER,
|
||||
externalId: { type: DataTypes.STRING(50), index: true }, // eslint-disable-line new-cap
|
||||
service: DataTypes.ENUM( // eslint-disable-line new-cap
|
||||
'amazon',
|
||||
'deezer',
|
||||
'google',
|
||||
'itunes',
|
||||
|
|
|
@ -3,6 +3,7 @@ export default function (sequelize, DataTypes) {
|
|||
id: { type: DataTypes.INTEGER, primaryKey: true, autoIncrement: true },
|
||||
externalId: { type: DataTypes.STRING(50), index: true }, // eslint-disable-line new-cap
|
||||
service: DataTypes.ENUM( // eslint-disable-line new-cap
|
||||
'amazon',
|
||||
'deezer',
|
||||
'google',
|
||||
'itunes',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue