Removed the posts schema from the src/server/db/schema.ts file, as it was not being used.
Removed the LatestPost component from the src/components/post.tsx file, as it was also not being used.
Added New Database Schemas:
Introduced schema definitions for verificationTokens, users, sessions, and accounts to support authentication and user management functionality.
Added new database schemas for pictures, status, types, prios, and reports to support the core functionality of the application, which involves managing and tracking various types of reports.
Introduced a protocolls table to store information about report updates, including the time, user, status, and comment.
Database Schema Improvements:
Added indexes to the database schema for improved performance.
Updated the report table fields to better suit the application's requirements.
Added fixmytown_status and fixmytown_types tables to store information about report statuses and types.
Removed Unused Post Schema and Component:
posts
schema from thesrc/server/db/schema.ts
file, as it was not being used.LatestPost
component from thesrc/components/post.tsx
file, as it was also not being used.Added New Database Schemas:
verificationTokens
,users
,sessions
, andaccounts
to support authentication and user management functionality.pictures
,status
,types
,prios
, andreports
to support the core functionality of the application, which involves managing and tracking various types of reports.protocolls
table to store information about report updates, including the time, user, status, and comment.Database Schema Improvements:
report
table fields to better suit the application's requirements.fixmytown_status
andfixmytown_types
tables to store information about report statuses and types.