Skip to content

Commit

Permalink
chore: adding docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuefii committed Aug 26, 2024
1 parent f83bda8 commit 959fd2d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class Regencies(db.Model):
code (str): Code Unique untuk Kabupaten/Kota (primary key).
province_code (str): Kode Provinsi yang merupakan foreign key dari tabel "provinces".
name (str): Nama Kabupaten/Kota yang tidak boleh kosong.
province (RelasionshipProperty): Relationship ke object Provinces.
"""

code: str = db.Column(db.String(5), primary_key=True)
Expand All @@ -40,6 +41,7 @@ class Districts(db.Model):
code (str): Code Unique untuk Kecamatan (primary key).
regency_code (str): Kode Kabupaten/Kota yang merupakan foreign key dari tabel "regencies".
name (str): Nama Kecamatan yang tidak boleh kosong.
regency (RelasionshipProperty): Relationship ke object Regencies.
"""

code: str = db.Column(db.String(8), primary_key=True)
Expand All @@ -58,6 +60,7 @@ class Villages(db.Model):
code (str): Code Unique untuk Desa (primary key).
district_code (str): Kode Kecamatan yang merupakan foreign key dari tabel "districts".
name (str): Nama Desa yang tidak boleh kosong.
district (RelasionshipProperty): Relationship ke object Districts.
"""

code: str = db.Column(db.String(13), primary_key=True)
Expand Down

0 comments on commit 959fd2d

Please sign in to comment.