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/Shelter.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
     
    1310
    1411    @Id
     12    @GeneratedValue(strategy = GenerationType.IDENTITY)
    1513    @Column(name = "id_shelter")
    16     private int id;
     14    private Integer id;
    1715
    1816    @Column(name = "address_shelter", nullable = false, length = 100)
Note: See TracChangeset for help on using the changeset viewer.