1
This commit is contained in:
@@ -6,8 +6,8 @@ export function define_amazon_search_item(sequelize) {
|
||||
{
|
||||
id: { type: DataTypes.BIGINT.UNSIGNED, primaryKey: true, autoIncrement: true },
|
||||
asin: { type: DataTypes.STRING(32), allowNull: false },
|
||||
url: { type: DataTypes.TEXT, allowNull: false },
|
||||
title: { type: DataTypes.TEXT, allowNull: true },
|
||||
url: { type: DataTypes.STRING(2048), allowNull: false },
|
||||
title: { type: DataTypes.STRING(1024), allowNull: true },
|
||||
price: { type: DataTypes.STRING(64), allowNull: true },
|
||||
rating: { type: DataTypes.FLOAT, allowNull: true },
|
||||
rating_text: { type: DataTypes.STRING(64), allowNull: true },
|
||||
|
||||
Reference in New Issue
Block a user