Skip to content

Commit

Permalink
Do not enforce fqan to be there (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
enolfc authored Sep 17, 2024
1 parent 0f2136d commit 0113088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion egi_notebooks_accounting/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class VM(BaseModel):
local_user_id = CharField(null=True)
local_group_id = CharField(null=True)
global_user_name = CharField(null=True)
fqan = CharField()
fqan = CharField(null=True)
status = CharField(null=True)
start_time = DateTimeField(null=True)
end_time = DateTimeField(null=True)
Expand Down

0 comments on commit 0113088

Please sign in to comment.