35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
|
# Generated by Django 2.0.1 on 2018-02-25 19:08
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
('profiles', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='History',
|
||
|
fields=[
|
||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('start_ts', models.DateTimeField(help_text='The starting timestamp of the history. Useful for cron-like structure.')),
|
||
|
('played', models.BooleanField(default=False)),
|
||
|
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='profiles.Profile')),
|
||
|
],
|
||
|
),
|
||
|
migrations.CreateModel(
|
||
|
name='HistoryEntry',
|
||
|
fields=[
|
||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('search', models.URLField(help_text='The url to be searched')),
|
||
|
('timestamp', models.DateTimeField()),
|
||
|
('history', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='histories.History')),
|
||
|
],
|
||
|
),
|
||
|
]
|