Initial commit — Southwest Roleplay FiveM

This commit is contained in:
jack
2026-06-20 13:05:34 +00:00
commit 3857de3d85
397 changed files with 30322 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { Column, Entity, PrimaryGeneratedColumn } from 'typeorm';
@Entity('chat_ads')
export class ChatAdEntity {
@PrimaryGeneratedColumn() id: number;
@Column({ type: 'varchar', width: 40 }) character_name: string;
@Column({ type: 'int' }) character_id: number;
@Column({ type: 'int' }) account_id: number;
@Column({ type: 'varchar', width: 296 }) advert: string;
@Column({ type: 'datetime' }) time: Date;
@Column({ type: 'int' }) paid: number;
@Column({ type: 'datetime', default: null, nullable: true }) aired: Date | null;
@Column({ type: 'datetime', default: null, nullable: true }) removed: Date | null;
@Column({ type: 'varchar', width: 40, default: null, nullable: true }) removed_by: string | null;
@Column({ type: 'boolean', default: false }) premium: boolean;
}