Merge branch 'feature/GEPAFINBE-3' of https://github.com/Kitzanos/GEPAFIN-BE into feature/GEPAFINBE-8

This commit is contained in:
harish
2024-08-22 11:39:37 +05:30
2 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ import lombok.Setter;
import java.time.LocalDateTime; import java.time.LocalDateTime;
@Entity @Entity
@Table(name = "\"USER\"") @Table(name = "GEPAFIN_USER")
@Getter @Getter
@Setter @Setter
public class UserEntity extends BaseEntity { public class UserEntity extends BaseEntity {

View File

@@ -86,10 +86,10 @@
</changeSet> </changeSet>
<changeSet id="14-08-2024_3" author="Harish Bagora"> <changeSet id="14-08-2024_3" author="Harish Bagora">
<createTable tableName="user"> <createTable tableName="gepafin_user">
<column autoIncrement="true" name="id" type="INTEGER"> <column autoIncrement="true" name="id" type="INTEGER">
<constraints nullable="false" primaryKey="true" <constraints nullable="false" primaryKey="true"
primaryKeyName="user_pkey"/> primaryKeyName="gepafin_user_pkey"/>
</column> </column>
<column name="password" type="VARCHAR(255)"> <column name="password" type="VARCHAR(255)">
<constraints nullable="false"/> <constraints nullable="false"/>
@@ -105,7 +105,7 @@
</column> </column>
<column name="phone_number" type="VARCHAR(255)"/> <column name="phone_number" type="VARCHAR(255)"/>
<column name="role_id" type="INTEGER"> <column name="role_id" type="INTEGER">
<constraints nullable="false" foreignKeyName="fk_user_role" references="role(id)"/> <constraints nullable="false" foreignKeyName="fk_gepafin_user_role" references="role(id)"/>
</column> </column>
<column name="status" type="VARCHAR(255)"> <column name="status" type="VARCHAR(255)">
<constraints nullable="false"/> <constraints nullable="false"/>