django-tos/tos/migrations/0001_initial.py
2016-04-19 14:15:48 -04:00

48 lines
1.9 KiB
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.9.4 on 2016-04-19 14:09
from __future__ import unicode_literals
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
initial = True
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
operations = [
migrations.CreateModel(
name='TermsOfService',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('created', models.DateTimeField(auto_now_add=True)),
('modified', models.DateTimeField(auto_now=True)),
('active', models.BooleanField(default=False, help_text='Only one terms of service is allowed to be active', verbose_name='active')),
('content', models.TextField(blank=True, verbose_name='content')),
],
options={
'ordering': ('-created',),
'get_latest_by': 'created',
'verbose_name': 'Terms of Service',
'verbose_name_plural': 'Terms of Service',
},
),
migrations.CreateModel(
name='UserAgreement',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('created', models.DateTimeField(auto_now_add=True)),
('modified', models.DateTimeField(auto_now=True)),
('terms_of_service', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='terms', to='tos.TermsOfService')),
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='user_agreement', to=settings.AUTH_USER_MODEL)),
],
options={
'abstract': False,
},
),
]