UserClaim.js (500B)
1 /** 2 * React Starter Kit (https://www.reactstarterkit.com/) 3 * 4 * Copyright © 2014-present Kriasoft, LLC. All rights reserved. 5 * 6 * This source code is licensed under the MIT license found in the 7 * LICENSE.txt file in the root directory of this source tree. 8 */ 9 10 import DataType from 'sequelize'; 11 import Model from '../sequelize'; 12 13 const UserClaim = Model.define('UserClaim', { 14 15 type: { 16 type: DataType.STRING, 17 }, 18 19 value: { 20 type: DataType.STRING, 21 }, 22 23 }); 24 25 export default UserClaim;