Added movability of dialogs
This commit is contained in:
11
backend/models/community/interest.js
Normal file
11
backend/models/community/interest.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import { sequelize } from '../../utils/sequelize.js';
|
||||
import { DataTypes } from 'sequelize';
|
||||
|
||||
const interest = sequelize.define('interest_type', {
|
||||
}, {
|
||||
tableName: 'interest',
|
||||
schema: 'community',
|
||||
underscored: true
|
||||
});
|
||||
|
||||
export default interest;
|
||||
Reference in New Issue
Block a user