fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix
[wolnelektury.git]
/
src
/
stats
/
migrations
/
0002_visits_date.py
1
# Generated by Django 2.2.19 on 2021-06-01 10:57
2
3
from django.db import migrations, models
4
5
6
class Migration(migrations.Migration):
7
8
dependencies = [
9
('stats', '0001_initial'),
10
]
11
12
operations = [
13
migrations.AddField(
14
model_name='visits',
15
name='date',
16
field=models.DateField(default='1970-01-01'),
17
preserve_default=False,
18
),
19
]