Ignore:
Timestamp:
02/05/23 17:43:38 (17 months ago)
Author:
Filip Chorbeski <86695898+FilipChorbeski@…>
Branches:
main
Children:
4d78603
Parents:
8ae6217 (diff), d546868 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'main' into adopting-a-pet

File:
1 moved

Legend:

Unmodified
Added
Removed
  • Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Adoption.java

    r8ae6217 re294983  
    1 package finki.paw5.model;
     1package finki.paw5.model.entities;
    22
    3 import jakarta.persistence.Column;
    4 import jakarta.persistence.Entity;
    5 import jakarta.persistence.Id;
    6 import jakarta.persistence.Table;
     3import jakarta.persistence.*;
    74import lombok.Data;
    85
     
    1613
    1714    @Id
     15    @GeneratedValue(strategy = GenerationType.IDENTITY)
    1816    @Column(name = "id_adoption")
    19     private int id;
     17    private Integer id;
    2018
    2119    @Column(name = "start_date", nullable = false)
Note: See TracChangeset for help on using the changeset viewer.