mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-18 11:49:19 +00:00
27 lines
314 B
TypeScript
27 lines
314 B
TypeScript
import {
|
|
Table,
|
|
Column,
|
|
CreatedAt,
|
|
UpdatedAt,
|
|
Model,
|
|
PrimaryKey
|
|
} from "sequelize-typescript";
|
|
|
|
@Table
|
|
class Setting extends Model<Setting> {
|
|
@PrimaryKey
|
|
@Column
|
|
key: string;
|
|
|
|
@Column
|
|
value: string;
|
|
|
|
@CreatedAt
|
|
createdAt: Date;
|
|
|
|
@UpdatedAt
|
|
updatedAt: Date;
|
|
}
|
|
|
|
export default Setting;
|