Skip to content

Commit

Permalink
Merge pull request #53 from SunbirdAI/uptime
Browse files Browse the repository at this point in the history
pushing migrations
  • Loading branch information
yigagilbert authored Feb 15, 2024
2 parents 0c7b72d + 61b2d00 commit a8a6274
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions celerybeat.pid
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1
18 changes: 18 additions & 0 deletions devices/migrations/0019_device_lastseen.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.6 on 2024-01-17 09:06

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('devices', '0018_alter_location_category'),
]

operations = [
migrations.AddField(
model_name='device',
name='lastSeen',
field=models.DateTimeField(blank=True, null=True),
),
]
17 changes: 17 additions & 0 deletions devices/migrations/0020_remove_device_lastseen.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 3.2.6 on 2024-01-22 09:43

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('devices', '0019_device_lastseen'),
]

operations = [
migrations.RemoveField(
model_name='device',
name='lastSeen',
),
]

0 comments on commit a8a6274

Please sign in to comment.