mirror of
https://github.com/BluemediaDev/muse.git
synced 2025-04-12 02:03:55 +02:00
Also: removes the -re ffmpeg option. If this option is passed, ffmpeg won't write to fs-capacitor (and the cache file) as fast as possible. In other words, the cache file won't finish writing until the entire stream has been played.
23 lines
349 B
TypeScript
23 lines
349 B
TypeScript
import {Table, Column, PrimaryKey, Model, AutoIncrement, Index} from 'sequelize-typescript';
|
|
|
|
@Table
|
|
export default class Shortcut extends Model {
|
|
@PrimaryKey
|
|
@AutoIncrement
|
|
@Column
|
|
id!: number;
|
|
|
|
@Column
|
|
@Index
|
|
guildId!: string;
|
|
|
|
@Column
|
|
authorId!: string;
|
|
|
|
@Column
|
|
@Index
|
|
shortcut!: string;
|
|
|
|
@Column
|
|
command!: string;
|
|
}
|