Skip to content

Commit 75db7ce

Browse files
committed
fix: test error
1 parent d777c9c commit 75db7ce

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: ci
22
on:
33
push:
44
branches-ignore:
5-
- master
5+
- main
66
pull_request:
77
branches-ignore:
8-
- master
8+
- main
99
jobs:
1010
ci:
1111
runs-on: ubuntu-latest

tests/models.py

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ class User(Model):
2828
last_login = fields.DatetimeField(description="Last Login", default=datetime.datetime.now)
2929
is_active = fields.BooleanField(default=True, description="Is Active")
3030
is_superuser = fields.BooleanField(default=False, description="Is SuperUser")
31+
intro = fields.TextField(default="")
32+
longitude = fields.DecimalField(max_digits=10, decimal_places=8)
3133

3234

3335
class Email(Model):

0 commit comments

Comments
 (0)