Skip to content
This repository has been archived by the owner on May 2, 2022. It is now read-only.

Commit

Permalink
added migration
Browse files Browse the repository at this point in the history
  • Loading branch information
pyprism committed Feb 9, 2018
1 parent c509c79 commit e9d9fd8
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions jobs/migrations/0006_auto_20180209_1114.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Generated by Django 2.0.2 on 2018-02-09 05:14

from django.db import migrations, models
import django.utils.timezone


class Migration(migrations.Migration):

dependencies = [
('jobs', '0005_delete_active'),
]

operations = [
migrations.AddField(
model_name='job',
name='created_at',
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
preserve_default=False,
),
migrations.AddField(
model_name='job',
name='updated_at',
field=models.DateTimeField(auto_now=True),
),
migrations.AddField(
model_name='keyword',
name='updated_at',
field=models.DateTimeField(auto_now=True),
),
]

0 comments on commit e9d9fd8

Please sign in to comment.