-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New employee exported at field added to Bamboohr table (#117)
* New employee exported at field added to Bamboohr table * employees exported update at exporting employees * comment resolved
- Loading branch information
1 parent
263c4e0
commit 14e9bee
Showing
3 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
apps/bamboohr/migrations/0005_bamboohr_employee_exported_at.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Generated by Django 3.1.14 on 2023-12-26 16:05 | ||
|
||
from django.db import migrations, models | ||
import django.utils.timezone | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('bamboohr', '0004_auto_20221220_0935'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='bamboohr', | ||
name='employee_exported_at', | ||
field=models.DateTimeField(auto_now_add=True, help_text='Employee exported to Fyle at datetime'), | ||
preserve_default=False, | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters