v3: added a chatbox
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 40s
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 40s
This commit is contained in:
@@ -7,7 +7,6 @@ import { up as up0005DropIsAdmin } from "./migrations/0005_drop_is_admin.ts";
|
|||||||
import { up as up0006Categories } from "./migrations/0006_categories.ts";
|
import { up as up0006Categories } from "./migrations/0006_categories.ts";
|
||||||
import { up as up0007PasswordResetTokens } from "./migrations/0007_password_reset_tokens.ts";
|
import { up as up0007PasswordResetTokens } from "./migrations/0007_password_reset_tokens.ts";
|
||||||
import { up as up0008ChatMessages } from "./migrations/0008_chat_messages.ts";
|
import { up as up0008ChatMessages } from "./migrations/0008_chat_messages.ts";
|
||||||
import { up as up0009ChatMessageUpdatedAt } from "./migrations/0009_chat_message_updated_at.ts";
|
|
||||||
|
|
||||||
interface Migration {
|
interface Migration {
|
||||||
name: string;
|
name: string;
|
||||||
@@ -26,7 +25,6 @@ const MIGRATIONS: Migration[] = [
|
|||||||
{ name: "0006_categories", up: up0006Categories },
|
{ name: "0006_categories", up: up0006Categories },
|
||||||
{ name: "0007_password_reset_tokens", up: up0007PasswordResetTokens },
|
{ name: "0007_password_reset_tokens", up: up0007PasswordResetTokens },
|
||||||
{ name: "0008_chat_messages", up: up0008ChatMessages },
|
{ name: "0008_chat_messages", up: up0008ChatMessages },
|
||||||
{ name: "0009_chat_message_updated_at", up: up0009ChatMessageUpdatedAt },
|
|
||||||
];
|
];
|
||||||
|
|
||||||
export function runMigrations(db: DatabaseSync): void {
|
export function runMigrations(db: DatabaseSync): void {
|
||||||
|
|||||||
Reference in New Issue
Block a user