|
|
|
@ -31,40 +31,20 @@ File.init( |
|
|
|
|
autoIncrement: true, |
|
|
|
|
primaryKey: true |
|
|
|
|
}, |
|
|
|
|
url: { |
|
|
|
|
type: DataTypes.STRING(255), |
|
|
|
|
allowNull: false |
|
|
|
|
}, |
|
|
|
|
name: { |
|
|
|
|
type: DataTypes.STRING(255), |
|
|
|
|
defaultValue: null |
|
|
|
|
allowNull: false |
|
|
|
|
}, |
|
|
|
|
title: { |
|
|
|
|
url: { |
|
|
|
|
type: DataTypes.STRING(255), |
|
|
|
|
defaultValue: null |
|
|
|
|
}, |
|
|
|
|
payload: { |
|
|
|
|
type: DataTypes.JSONB, |
|
|
|
|
defaultValue: null // id | code | name
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// manager
|
|
|
|
|
is_active: { |
|
|
|
|
type: DataTypes.BOOLEAN, |
|
|
|
|
defaultValue: true |
|
|
|
|
}, |
|
|
|
|
created_at: { |
|
|
|
|
type: DataTypes.DATE, |
|
|
|
|
defaultValue: DataTypes.NOW |
|
|
|
|
}, |
|
|
|
|
updated_at: { |
|
|
|
|
type: DataTypes.DATE, |
|
|
|
|
defaultValue: DataTypes.NOW |
|
|
|
|
allowNull: false |
|
|
|
|
}, |
|
|
|
|
created_by: { |
|
|
|
|
type: DataTypes.JSONB, |
|
|
|
|
defaultValue: null // id | name
|
|
|
|
|
download_count: { |
|
|
|
|
type: DataTypes.NUMBER, |
|
|
|
|
allowNull: true, |
|
|
|
|
defaultValue: 0 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
timestamps: false, |
|
|
|
@ -209,7 +189,7 @@ File.get = async (id) => { |
|
|
|
|
if (!data) { |
|
|
|
|
throw new APIError({ |
|
|
|
|
status: httpStatus.NOT_FOUND, |
|
|
|
|
message: 'Không tìm thấy địa chỉ tỉnh/thành!' |
|
|
|
|
message: 'Không tìm thấy địa chỉ file!' |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
return data; |
|
|
|
|