mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
|
import { Column, Model, PrimaryKey, Table } from "sequelize-typescript";
|
||
|
|
||
|
@Table({
|
||
|
tableName: "dimension_users",
|
||
|
underscoredAll: false,
|
||
|
timestamps: false,
|
||
|
})
|
||
|
export default class User extends Model<User> {
|
||
|
// This is really just a holding class to keep foreign keys alive
|
||
|
|
||
|
@PrimaryKey
|
||
|
@Column
|
||
|
userId: string;
|
||
|
}
|