2 Open Issues Need Help Last updated: Jul 25, 2025

Open Issues Need Help

View All on GitHub

AI Summary: Create a JPA entity class, `Todo.java`, within the `com.example.todobackend.entity` package for a Spring Boot backend. The class should map to a `todos` database table, including fields for `id`, `title`, and `isCompleted`, annotated appropriately with `@Entity`, `@Id`, and `@Column`.

Complexity: 2/5
good first issue database setup

AI Summary: Create a PostgreSQL `todos` table with columns for id, title, completion status, creation timestamp, and update timestamp. Include the SQL script for table creation and instructions on how to apply it to the database (either via a migration tool or manual execution).

Complexity: 2/5
good first issue database