Skip to content

Latest commit

 

History

History
84 lines (64 loc) · 944 Bytes

File metadata and controls

84 lines (64 loc) · 944 Bytes

REAL ESTATE

Real Estate Project Version 1.0.0

Installation DB

MySQL

CREATE SCHEMA `companydb` DEFAULT CHARACTER SET utf8 COLLATE utf8_bin ;

PostgreSQL

CREATE DATABASE companydb
    WITH
    OWNER = postgres
    ENCODING = 'UTF8'
    LOCALE_PROVIDER = 'libc'
    CONNECTION LIMIT = -1
    IS_TEMPLATE = False;

Property - Mülk Varlık (Ev, Arsa, Dükkan)

  • id
  • propertyName
  • title
  • description
  • type
  • location
  • price

  • bedroom
  • bathroom
  • area

Buyer - Alıcı

  • id
  • firstName
  • lastName
  • email
  • phone
  • username
  • password
  • rating

Seller - Alıcı

  • id
  • firstName
  • lastName
  • email
  • phone
  • username
  • password

Agent - Emlakçı

  • id
  • firstName
  • lastName
  • email
  • phone
  • username
  • password
  • rating
  • officeAddress

Software Info

Java 23
Hibernate 6
MySQL 9
PostgreSQL 17

License

Real Estate Company