21 lines
347 B
JavaScript
21 lines
347 B
JavaScript
"use strict";
|
|
|
|
module.exports = (sequalize, DataTypes) => {
|
|
const KiviOriginal = sequalize.define(
|
|
"KiviOriginal",
|
|
{
|
|
kiviAdId: {
|
|
type: DataTypes.BIGINT,
|
|
autoIncrement: true,
|
|
primaryKey: true
|
|
},
|
|
email: DataTypes.TEXT
|
|
},
|
|
{
|
|
freezeTableName: true
|
|
}
|
|
);
|
|
|
|
return KiviOriginal;
|
|
};
|