Open Issues Need Help
View All on GitHub Issue #1-2: [Backend] ToDoエンティティクラスの作成 about 1 month ago
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
Issue #1-1: [Database] ToDoテーブルの作成 about 1 month ago
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