AI Implementation feature(859): Admin Area General Settings and Categories (#21)

This commit was merged in pull request #21.
This commit is contained in:
2026-07-22 11:45:23 +00:00
parent de527ec6d6
commit c9e8dfc611
34 changed files with 7349 additions and 62 deletions
@@ -1,6 +1,7 @@
import { Entity, PrimaryColumn, Column, Index } from 'typeorm';
@Entity('category')
@Index('uq_category_abbreviation', ['abbreviation'], { unique: true })
export class CategoryEntity {
@PrimaryColumn('text')
id!: string;
@@ -20,4 +21,10 @@ export class CategoryEntity {
@Column('text', { name: 'icon_path', default: '' })
iconPath!: string;
}
@Column('text', { name: 'created_at', default: '' })
createdAt!: string;
@Column('text', { name: 'updated_at', default: '' })
updatedAt!: string;
}