-
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.
Fix: Add created_at, created_at to workspace_schedule and workspaces_…
…user table
- Loading branch information
1 parent
5abc8e8
commit 418fea2
Showing
3 changed files
with
52 additions
and
2 deletions.
There are no files selected for viewing
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
23 changes: 23 additions & 0 deletions
23
apps/workspaces/migrations/0007_workspacesuser_created_at_workspacesuser_updated_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,23 @@ | ||
# Generated by Django 4.1.2 on 2024-12-19 18:26 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('workspaces', '0006_rename_default_ccc_bank_account_id_exportsetting_default_ccc_bank_account_id_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='workspacesuser', | ||
name='created_at', | ||
field=models.DateTimeField(auto_now_add=True, help_text='Created at datetime', null=True), | ||
), | ||
migrations.AddField( | ||
model_name='workspacesuser', | ||
name='updated_at', | ||
field=models.DateTimeField(auto_now=True, help_text='Updated at datetime', null=True), | ||
), | ||
] |
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