WiP Changed welcome and input form for ad type

This commit is contained in:
Naida Vatric
2020-02-03 13:11:40 +01:00
parent 824db4fbc3
commit d45441f4be
12 changed files with 264 additions and 23 deletions

View File

@@ -0,0 +1,20 @@
"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;
};