Skip to content

Commit

Permalink
refactor: birthdate format
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunioatm committed Jan 19, 2024
1 parent 67fb1f3 commit e45e6c5
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/database/seeds/constant.seed.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var pets = []pet.Pet{
{
Type: "แมว",
Name: "เต้าเจี้ยว",
Birthdate: "4 July 2023",
Birthdate: "2023-07-04 00:00:00.000000",
Gender: constant.MALE,
Color: "ครีม",
Pattern: "สีล้วน",
Expand All @@ -26,7 +26,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "ซีอิ๊ว",
Birthdate: "4 July 2023",
Birthdate: "2023-07-04 00:00:00.000000",
Gender: constant.FEMALE,
Color: "ดำ",
Pattern: "สีล้วน",
Expand All @@ -43,7 +43,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "พัดพา",
Birthdate: "18 June 2023",
Birthdate: "2023-06-18 00:00:00.000000",
Gender: constant.FEMALE,
Color: "เทา",
Pattern: "สลิด",
Expand All @@ -60,7 +60,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "โอริโอ้",
Birthdate: "20 December 2022",
Birthdate: "2022-12-20 00:00:00.000000",
Gender: constant.MALE,
Color: "ดำ",
Pattern: "สีล้วน",
Expand All @@ -77,7 +77,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "แม่พลอย",
Birthdate: "18 July 2017",
Birthdate: "2017-07-18 00:00:00.000000",
Gender: constant.FEMALE,
Color: "เทา",
Pattern: "สลิด",
Expand All @@ -94,7 +94,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "แมงมุม",
Birthdate: "6 September 2023",
Birthdate: "2023-09-06 00:00:00.000000",
Gender: constant.MALE,
Color: "น้ำตาล",
Pattern: "สีล้วน",
Expand All @@ -111,7 +111,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "ลูกหม่อน",
Birthdate: "18 August 2023",
Birthdate: "2023-08-18 00:00:00.000000",
Gender: constant.FEMALE,
Color: "น้ำตาล",
Pattern: "เปรอะ",
Expand All @@ -128,7 +128,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "ซาบะ",
Birthdate: "18 June 2023",
Birthdate: "2023-06-18 00:00:00.000000",
Gender: constant.FEMALE,
Color: "เทา",
Pattern: "สลิด",
Expand All @@ -145,7 +145,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "มีจ้า",
Birthdate: "4 September 2023",
Birthdate: "2023-09-04 00:00:00.000000",
Gender: constant.MALE,
Color: "น้ำตาล",
Pattern: "สีล้วน",
Expand All @@ -162,7 +162,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "หวานเจี๊ยบ",
Birthdate: "4 September 2023",
Birthdate: "2023-09-04 00:00:00.000000",
Gender: constant.FEMALE,
Color: "ดำ",
Pattern: "ทักซิโด้",
Expand All @@ -179,7 +179,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "วินนี่",
Birthdate: "4 October 2023",
Birthdate: "2023-10-04 00:00:00.000000",
Gender: constant.FEMALE,
Color: "ดำ",
Pattern: "สีล้วน",
Expand All @@ -196,7 +196,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "มะกอก & มะกรูด",
Birthdate: "18 June 2023",
Birthdate: "2023-06-18 00:00:00.000000",
Gender: constant.MALE,
Color: "เทา",
Pattern: "สลิด",
Expand All @@ -213,7 +213,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "น้องมอม",
Birthdate: "18 January 2022",
Birthdate: "2022-01-18 00:00:00.000000",
Gender: constant.FEMALE,
Color: "เทา",
Pattern: "สลิด",
Expand All @@ -230,7 +230,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "น้องเด็กหรือแมวเด็ก",
Birthdate: "4 June 2023",
Birthdate: "2023-06-04 00:00:00.000000",
Gender: constant.FEMALE,
Color: "น้ำตาล",
Pattern: "เปรอะ",
Expand All @@ -247,7 +247,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "น้องเล็ก",
Birthdate: "4 June 2023",
Birthdate: "2023-06-04 00:00:00.000000",
Gender: constant.MALE,
Color: "เทา",
Pattern: "สลิด",
Expand All @@ -264,7 +264,7 @@ var pets = []pet.Pet{
}, {
Type: "แมว",
Name: "หนิงหนิง",
Birthdate: "18 August 2023",
Birthdate: "2023-08-18 00:00:00.000000",
Gender: constant.MALE,
Color: "นวล",
Pattern: "สลิด",
Expand Down

0 comments on commit e45e6c5

Please sign in to comment.