Compare commits
4 Commits
7ed3367ed8
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e6ecefb8d9 | ||
|
|
be029ee054 | ||
|
|
df35b8991d | ||
|
|
4349fa39b4 |
16
.vscode/settings.json
vendored
16
.vscode/settings.json
vendored
@@ -1,5 +1,19 @@
|
|||||||
{
|
{
|
||||||
"editor.fontFamily": "'FiraCode Nerd Font Mono',Menlo, Monaco, 'Courier New', monospace",
|
"editor.fontFamily": "'FiraCode Nerd Font Mono',Menlo, Monaco, 'Courier New', monospace",
|
||||||
"terminal.integrated.fontFamily": "'FiraCode Nerd Font Mono'",
|
"terminal.integrated.fontFamily": "'FiraCode Nerd Font Mono'",
|
||||||
"markdown.preview.fontFamily": "'FiraCode Nerd Font Mono',-apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', system-ui, 'Ubuntu', 'Droid Sans', sans-serif"
|
"markdown.preview.fontFamily": "'FiraCode Nerd Font Mono',-apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', system-ui, 'Ubuntu', 'Droid Sans', sans-serif",
|
||||||
|
"sqltools.connections": [
|
||||||
|
{
|
||||||
|
"ssh": "Disabled",
|
||||||
|
"previewLimit": 50,
|
||||||
|
"server": "localhost",
|
||||||
|
"port": 4301,
|
||||||
|
"driver": "PostgreSQL",
|
||||||
|
"name": "dvbooking-dev",
|
||||||
|
"group": "dvbooking",
|
||||||
|
"database": "dvbooking",
|
||||||
|
"username": "postgres",
|
||||||
|
"password": "test"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
<form [formGroup]="filterForm" class="p-4 bg-base-200 rounded-lg shadow">
|
<form [formGroup]="filterForm" class="p-4 bg-base-200 rounded-lg shadow">
|
||||||
<div class="grid grid-cols-1 md:grid-cols-4 gap-4 items-end">
|
<div class="grid grid-cols-1 md:grid-cols-4 gap-4 items-end">
|
||||||
<div class="form-control"><label class="label"><span class="label-text">SearchTerm</span></label>
|
<div class="form-control"><label class="label"><span class="label-text">Keresés</span></label>
|
||||||
<input type="text" formControlName="term" class="input input-bordered w-full" placeholder="Search term" /></div>
|
<input type="text" formControlName="term" class="input input-bordered w-full" placeholder="Keresés" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
@@ -36,10 +36,15 @@ export class SingleEventDashboardEventActivation {
|
|||||||
|
|
||||||
const event = this.event();
|
const event = this.event();
|
||||||
console.info('setEventOccurrenceActivation', event);
|
console.info('setEventOccurrenceActivation', event);
|
||||||
const eventId = this.event()?.id!;
|
const eventId = event?.id!;
|
||||||
const startTime = this.event()?.startTime!;
|
const originalStartTime = event?.originalStartTime!;
|
||||||
let payload: CreateExceptionDto | undefined;
|
let payload: CreateExceptionDto | undefined;
|
||||||
const eventException = event?.exceptions?.length ? event.exceptions[0] : undefined;
|
|
||||||
|
// Correctly find the exception that matches this specific occurrence
|
||||||
|
const eventException = event?.exceptions?.find(ex =>
|
||||||
|
new Date(ex.originalStartTime).getTime() === new Date(originalStartTime).getTime()
|
||||||
|
);
|
||||||
|
|
||||||
if (eventException) {
|
if (eventException) {
|
||||||
payload = {
|
payload = {
|
||||||
...eventException,
|
...eventException,
|
||||||
@@ -50,7 +55,7 @@ export class SingleEventDashboardEventActivation {
|
|||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
payload = {
|
payload = {
|
||||||
originalStartTime: new Date(startTime),
|
originalStartTime: new Date(originalStartTime),
|
||||||
isCancelled: !activated,
|
isCancelled: !activated,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ export type CalendarEventDto = {
|
|||||||
id: number;
|
id: number;
|
||||||
title: string;
|
title: string;
|
||||||
startTime: string,
|
startTime: string,
|
||||||
|
originalStartTime: string,
|
||||||
endTime: string,
|
endTime: string,
|
||||||
description: string,
|
description: string,
|
||||||
isModified?: boolean;
|
isModified?: boolean;
|
||||||
|
|||||||
@@ -5,25 +5,32 @@
|
|||||||
<div class="card bg-base-100 shadow-xl max-w-2xl mx-auto">
|
<div class="card bg-base-100 shadow-xl max-w-2xl mx-auto">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<h2 class="card-title text-3xl">
|
<h2 class="card-title text-3xl">
|
||||||
{{ isEditMode ? 'Edit' : 'Create' }} EventType
|
{{ isEditMode ? 'Frissítés' : 'Létrehozás' }} Esemény típus
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<form [formGroup]="form" (ngSubmit)="onSubmit()" class="space-y-4 mt-4">
|
<form [formGroup]="form" (ngSubmit)="onSubmit()" class="space-y-4 mt-4">
|
||||||
|
|
||||||
<div class="form-control"><label class="label"><span class="label-text">Esemény típus neve</span></label>
|
<div class="form-control"><label class="label"><span class="label-text">Esemény típus neve</span></label>
|
||||||
<input type="text" formControlName="name" class="input input-bordered w-full" /></div>
|
<input type="text" formControlName="name" class="input input-bordered w-full" />
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="form-control"><label class="label"><span class="label-text">Leírás</span></label>
|
<div class="form-control"><label class="label"><span class="label-text">Leírás</span></label>
|
||||||
<input type="text" formControlName="description" class="input input-bordered w-full" /></div>
|
<input type="text" formControlName="description" class="input input-bordered w-full" />
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="form-control"><label class="label"><span class="label-text">Szín</span></label>
|
<div class="form-control"><label class="label"><span class="label-text">Szín</span></label>
|
||||||
<input type="color" formControlName="color" class="input input-bordered w-full" colorspace="display-p3"
|
<input type="color" formControlName="color" class="input input-bordered w-full" colorspace="display-p3"
|
||||||
alpha /></div>
|
alpha />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-control"><label class="label"><span class="label-text">Maximális slot szám</span></label>
|
||||||
|
<input type="number" formControlName="max_slot_count" class="input input-bordered w-full" />
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="card-actions justify-end mt-6">
|
<div class="card-actions justify-end mt-6">
|
||||||
<a routerLink="/event-type" class="btn btn-ghost">Cancel</a>
|
<a routerLink="/event-type" class="btn btn-ghost">Vissza</a>
|
||||||
<button type="submit" class="btn btn-primary" [disabled]="form.invalid">
|
<button type="submit" class="btn btn-primary" [disabled]="form.invalid">
|
||||||
{{ isEditMode ? 'Update' : 'Create' }}
|
{{ isEditMode ? 'Frissítés' : 'Létrehozás' }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ export class EventTypeFormComponent implements OnInit {
|
|||||||
isEditMode = false;
|
isEditMode = false;
|
||||||
id: number | null = null;
|
id: number | null = null;
|
||||||
|
|
||||||
private numericFields = [];
|
private numericFields = ['max_slot_count'];
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private fb: FormBuilder,
|
private fb: FormBuilder,
|
||||||
@@ -45,7 +45,8 @@ export class EventTypeFormComponent implements OnInit {
|
|||||||
this.form = this.fb.group({
|
this.form = this.fb.group({
|
||||||
name: [null],
|
name: [null],
|
||||||
description: [null],
|
description: [null],
|
||||||
color: [null]
|
color: [null],
|
||||||
|
max_slot_count: [null]
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -104,7 +105,7 @@ export class EventTypeFormComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
action$.subscribe({
|
action$.subscribe({
|
||||||
next: () => this.router.navigate(['/event-type']),
|
next: () => this.router.navigate(['/event-type/table']),
|
||||||
error: (err) => console.error('Failed to save event-type', err)
|
error: (err) => console.error('Failed to save event-type', err)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,11 +13,12 @@
|
|||||||
<table class="table w-full">
|
<table class="table w-full">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>id</th>
|
<th>Azonosító</th>
|
||||||
<th>name</th>
|
<th>Név</th>
|
||||||
<th>description</th>
|
<th>Leírás</th>
|
||||||
<th>color</th>
|
<th>Szín</th>
|
||||||
<th class="text-right">Actions</th>
|
<th>Férőhelyek</th>
|
||||||
|
<th class="text-right">Műveletek</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@@ -26,6 +27,7 @@
|
|||||||
<td>{{ item.name }}</td>
|
<td>{{ item.name }}</td>
|
||||||
<td>{{ item.description }}</td>
|
<td>{{ item.description }}</td>
|
||||||
<td>{{ item.color }}</td>
|
<td>{{ item.color }}</td>
|
||||||
|
<td>{{ item.max_slot_count }}</td>
|
||||||
<td class="text-right space-x-2">
|
<td class="text-right space-x-2">
|
||||||
<a [routerLink]="['/event-type', item.id]" class="btn btn-sm btn-ghost">Részletek</a>
|
<a [routerLink]="['/event-type', item.id]" class="btn btn-sm btn-ghost">Részletek</a>
|
||||||
<a [routerLink]="['/event-type', item.id, 'edit']" class="btn btn-sm btn-ghost">Módosítás</a>
|
<a [routerLink]="['/event-type', item.id, 'edit']" class="btn btn-sm btn-ghost">Módosítás</a>
|
||||||
@@ -33,7 +35,7 @@
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr *ngIf="response.data.length === 0">
|
<tr *ngIf="response.data.length === 0">
|
||||||
<td colspan="5" class="text-center">No event-type found.</td>
|
<td colspan="6" class="text-center">Nem található eseménytípusok.</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
@@ -42,14 +44,10 @@
|
|||||||
<!-- Pagination Controls -->
|
<!-- Pagination Controls -->
|
||||||
<div *ngIf="response.meta.totalPages > 1" class="flex justify-center mt-4">
|
<div *ngIf="response.meta.totalPages > 1" class="flex justify-center mt-4">
|
||||||
<div class="join">
|
<div class="join">
|
||||||
<button
|
<button class="join-item btn" (click)="changePage(response.meta.currentPage - 1)"
|
||||||
class="join-item btn"
|
|
||||||
(click)="changePage(response.meta.currentPage - 1)"
|
|
||||||
[disabled]="response.meta.currentPage === 1">«</button>
|
[disabled]="response.meta.currentPage === 1">«</button>
|
||||||
<button class="join-item btn">Page {{ response.meta.currentPage }} of {{ response.meta.totalPages }}</button>
|
<button class="join-item btn">Oldal {{ response.meta.currentPage }} of {{ response.meta.totalPages }}</button>
|
||||||
<button
|
<button class="join-item btn" (click)="changePage(response.meta.currentPage + 1)"
|
||||||
class="join-item btn"
|
|
||||||
(click)="changePage(response.meta.currentPage + 1)"
|
|
||||||
[disabled]="response.meta.currentPage === response.meta.totalPages">»</button>
|
[disabled]="response.meta.currentPage === response.meta.totalPages">»</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ export class EventTypeTableComponent implements OnInit {
|
|||||||
columns: [
|
columns: [
|
||||||
{
|
{
|
||||||
attribute: 'name',
|
attribute: 'name',
|
||||||
headerCell: true,
|
headerCell: { value: 'Név' },
|
||||||
valueCell: {
|
valueCell: {
|
||||||
styleClass: ctx => 'w-[1%]',
|
styleClass: ctx => 'w-[1%]',
|
||||||
value: item => item?.name,
|
value: item => item?.name,
|
||||||
@@ -68,14 +68,14 @@ export class EventTypeTableComponent implements OnInit {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
attribute: 'description',
|
attribute: 'description',
|
||||||
headerCell: true,
|
headerCell: { value: 'Leírás' },
|
||||||
valueCell: {
|
valueCell: {
|
||||||
value: item => item?.description,
|
value: item => item?.description,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
attribute: 'color',
|
attribute: 'color',
|
||||||
headerCell: true,
|
headerCell: { value: 'Szín' },
|
||||||
valueCell: {
|
valueCell: {
|
||||||
styleClass: ctx => 'w-[1%]',
|
styleClass: ctx => 'w-[1%]',
|
||||||
value: item => item?.color,
|
value: item => item?.color,
|
||||||
@@ -85,9 +85,16 @@ export class EventTypeTableComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
attribute: 'max_slot_count',
|
||||||
|
headerCell: { value: 'Férőhelyek' },
|
||||||
|
valueCell: {
|
||||||
|
value: item => item?.max_slot_count,
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
attribute: 'actions',
|
attribute: 'actions',
|
||||||
headerCell: { value: 'Actions' },
|
headerCell: { value: 'Műveletek' },
|
||||||
valueCell: {
|
valueCell: {
|
||||||
styleClass: ctx => 'w-[1%]',
|
styleClass: ctx => 'w-[1%]',
|
||||||
component: GenericActionColumn,
|
component: GenericActionColumn,
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ export interface EventType {
|
|||||||
name: string;
|
name: string;
|
||||||
description: string;
|
description: string;
|
||||||
color: string;
|
color: string;
|
||||||
|
max_slot_count?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface PaginatedResponse<T> {
|
export interface PaginatedResponse<T> {
|
||||||
|
|||||||
@@ -62,10 +62,10 @@ type BookingWithUserDto = {
|
|||||||
id: number;
|
id: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
// The final shape of a calendar event occurrence
|
|
||||||
export type CalendarEventDto = Omit<Event, 'bookings'> & {
|
export type CalendarEventDto = Omit<Event, 'bookings'> & {
|
||||||
isModified?: boolean;
|
isModified?: boolean;
|
||||||
isCancelled?: boolean;
|
isCancelled?: boolean;
|
||||||
|
originalStartTime: Date;
|
||||||
eventBookings: BookingWithUserDto[];
|
eventBookings: BookingWithUserDto[];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -146,6 +146,7 @@ export class CalendarService {
|
|||||||
const key = `${event.id}-${event.startTime.getTime()}`;
|
const key = `${event.id}-${event.startTime.getTime()}`;
|
||||||
return {
|
return {
|
||||||
...event,
|
...event,
|
||||||
|
originalStartTime: event.startTime,
|
||||||
eventBookings: bookingMap.get(key) || [],
|
eventBookings: bookingMap.get(key) || [],
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
@@ -197,6 +198,7 @@ export class CalendarService {
|
|||||||
exception.newEndTime ||
|
exception.newEndTime ||
|
||||||
new Date(occurrenceDate.getTime() + duration),
|
new Date(occurrenceDate.getTime() + duration),
|
||||||
isModified: true,
|
isModified: true,
|
||||||
|
originalStartTime: occurrenceDate,
|
||||||
eventBookings: bookingMap.get(key) || [],
|
eventBookings: bookingMap.get(key) || [],
|
||||||
isCancelled: !!exception.isCancelled,
|
isCancelled: !!exception.isCancelled,
|
||||||
});
|
});
|
||||||
@@ -206,6 +208,7 @@ export class CalendarService {
|
|||||||
recurringOccurrences.push({
|
recurringOccurrences.push({
|
||||||
...event,
|
...event,
|
||||||
startTime: occurrenceDate,
|
startTime: occurrenceDate,
|
||||||
|
originalStartTime: occurrenceDate,
|
||||||
endTime: new Date(occurrenceDate.getTime() + duration),
|
endTime: new Date(occurrenceDate.getTime() + duration),
|
||||||
eventBookings: bookingMap.get(key) || [],
|
eventBookings: bookingMap.get(key) || [],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { Entity, PrimaryGeneratedColumn, Column, OneToMany } from 'typeorm';
|
import { Entity, PrimaryGeneratedColumn, Column, OneToMany } from 'typeorm';
|
||||||
import { Event } from './event.entity';
|
import { Event } from './event.entity';
|
||||||
import { IsString, IsOptional } from 'class-validator';
|
import { IsString, IsOptional, IsNumber } from 'class-validator';
|
||||||
|
|
||||||
@Entity({ name: 'event_type' })
|
@Entity({ name: 'event_type' })
|
||||||
export class EventType {
|
export class EventType {
|
||||||
@@ -23,6 +23,11 @@ export class EventType {
|
|||||||
@IsString()
|
@IsString()
|
||||||
color: string | null;
|
color: string | null;
|
||||||
|
|
||||||
|
@Column({ type: 'integer', nullable: true })
|
||||||
|
@IsOptional()
|
||||||
|
@IsNumber()
|
||||||
|
max_slot_count: number | null;
|
||||||
|
|
||||||
@OneToMany(() => Event, (event) => event.eventType)
|
@OneToMany(() => Event, (event) => event.eventType)
|
||||||
events: Event[];
|
events: Event[];
|
||||||
}
|
}
|
||||||
|
|||||||
100
server/src/migration/1763106308124-add_non_admin_users.ts
Normal file
100
server/src/migration/1763106308124-add_non_admin_users.ts
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
import { MigrationInterface, QueryRunner } from 'typeorm';
|
||||||
|
|
||||||
|
export class AddNonAdminUsers1763106308124 implements MigrationInterface {
|
||||||
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
||||||
|
// 1. Create 'user' Role if it doesn't exist
|
||||||
|
const roles = await queryRunner.query(
|
||||||
|
`SELECT id FROM "user_role" WHERE "name" = 'user'`,
|
||||||
|
);
|
||||||
|
let userRoleId: number;
|
||||||
|
if (roles.length === 0) {
|
||||||
|
const insertRole = await queryRunner.query(
|
||||||
|
`INSERT INTO "user_role" ("name") VALUES ('user') RETURNING id`,
|
||||||
|
);
|
||||||
|
userRoleId = insertRole[0].id;
|
||||||
|
} else {
|
||||||
|
userRoleId = roles[0].id;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 2. Create 'user' Group if it doesn't exist
|
||||||
|
const groups = await queryRunner.query(
|
||||||
|
`SELECT id FROM "user_group" WHERE "name" = 'user'`,
|
||||||
|
);
|
||||||
|
let userGroupId: number;
|
||||||
|
if (groups.length === 0) {
|
||||||
|
const insertGroup = await queryRunner.query(
|
||||||
|
`INSERT INTO "user_group" ("name") VALUES ('user') RETURNING id`,
|
||||||
|
);
|
||||||
|
userGroupId = insertGroup[0].id;
|
||||||
|
} else {
|
||||||
|
userGroupId = groups[0].id;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 3. Link Group to Role if not linked
|
||||||
|
const groupRoles = await queryRunner.query(
|
||||||
|
`SELECT * FROM "user_group_roles_user_role" WHERE "userGroupId" = $1 AND "userRoleId" = $2`,
|
||||||
|
[userGroupId, userRoleId],
|
||||||
|
);
|
||||||
|
if (groupRoles.length === 0) {
|
||||||
|
await queryRunner.query(
|
||||||
|
`INSERT INTO "user_group_roles_user_role" ("userGroupId", "userRoleId") VALUES ($1, $2)`,
|
||||||
|
[userGroupId, userRoleId],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 4. Create 3 Users
|
||||||
|
const passwordHash = '$2a$12$sT7bIBfUdAvCzcwyppSX/uVd4EP6ORgWiEg7jqXvMKJErR5jWhnmO'; // '123456'
|
||||||
|
const usersToCreate = [
|
||||||
|
{ username: 'user1', email: 'user1@test.com' },
|
||||||
|
{ username: 'user2', email: 'user2@test.com' },
|
||||||
|
{ username: 'user3', email: 'user3@test.com' },
|
||||||
|
];
|
||||||
|
|
||||||
|
for (const userData of usersToCreate) {
|
||||||
|
const existingUser = await queryRunner.query(
|
||||||
|
`SELECT id FROM "user" WHERE "username" = $1`,
|
||||||
|
[userData.username],
|
||||||
|
);
|
||||||
|
|
||||||
|
let userId: number;
|
||||||
|
if (existingUser.length === 0) {
|
||||||
|
const insertUser = await queryRunner.query(
|
||||||
|
`INSERT INTO "user" ("username", "email", "password") VALUES ($1, $2, $3) RETURNING id`,
|
||||||
|
[userData.username, userData.email, passwordHash],
|
||||||
|
);
|
||||||
|
userId = insertUser[0].id;
|
||||||
|
} else {
|
||||||
|
userId = existingUser[0].id;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 5. Link User to Group
|
||||||
|
const userToGroup = await queryRunner.query(
|
||||||
|
`SELECT * FROM "user_groups_user_group" WHERE "userId" = $1 AND "userGroupId" = $2`,
|
||||||
|
[userId, userGroupId],
|
||||||
|
);
|
||||||
|
if (userToGroup.length === 0) {
|
||||||
|
await queryRunner.query(
|
||||||
|
`INSERT INTO "user_groups_user_group" ("userId", "userGroupId") VALUES ($1, $2)`,
|
||||||
|
[userId, userGroupId],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
||||||
|
const usernames = ['user1', 'user2', 'user3'];
|
||||||
|
|
||||||
|
for (const username of usernames) {
|
||||||
|
const user = await queryRunner.query(`SELECT id FROM "user" WHERE "username" = $1`, [username]);
|
||||||
|
if (user.length > 0) {
|
||||||
|
const userId = user[0].id;
|
||||||
|
await queryRunner.query(`DELETE FROM "user_groups_user_group" WHERE "userId" = $1`, [userId]);
|
||||||
|
await queryRunner.query(`DELETE FROM "user" WHERE "id" = $1`, [userId]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// We might not want to delete the 'user' group and role as they might be used by others,
|
||||||
|
// but for completeness of this migration's "down" if they were created here:
|
||||||
|
// However, usually it's safer to just leave the schema-level definitions if they are generic.
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
import { MigrationInterface, QueryRunner } from "typeorm";
|
||||||
|
|
||||||
|
export class AddMaxSlotCountToEventType1763106308125 implements MigrationInterface {
|
||||||
|
name = 'AddMaxSlotCountToEventType1763106308125';
|
||||||
|
|
||||||
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
||||||
|
await queryRunner.query(
|
||||||
|
`ALTER TABLE "event_type" ADD COLUMN "max_slot_count" integer NULL`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
||||||
|
await queryRunner.query(`ALTER TABLE "event_type" DROP COLUMN "max_slot_count"`);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user