summaryrefslogtreecommitdiff
path: root/app/unused_apps/ccg_notes/migrations/0001_initial.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-12-02 15:02:12 -0500
committerluxagraf <sng@luxagraf.net>2020-12-02 15:02:12 -0500
commitab8055b5cab2523d925f59c65bc38df103a26991 (patch)
tree29e4597bc0d86d658f574c0c4f0b036351a68742 /app/unused_apps/ccg_notes/migrations/0001_initial.py
parent87f692178a6e30719c564076f00c206642f36ce6 (diff)
deleted old apps and media
Diffstat (limited to 'app/unused_apps/ccg_notes/migrations/0001_initial.py')
-rw-r--r--app/unused_apps/ccg_notes/migrations/0001_initial.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/app/unused_apps/ccg_notes/migrations/0001_initial.py b/app/unused_apps/ccg_notes/migrations/0001_initial.py
deleted file mode 100644
index 1877e91..0000000
--- a/app/unused_apps/ccg_notes/migrations/0001_initial.py
+++ /dev/null
@@ -1,33 +0,0 @@
-# -*- coding: utf-8 -*-
-# Generated by Django 1.9 on 2016-07-22 19:54
-from __future__ import unicode_literals
-
-from django.db import migrations, models
-import django.utils.timezone
-import taggit.managers
-
-
-class Migration(migrations.Migration):
-
- initial = True
-
- dependencies = [
- ('taggit', '0002_auto_20150616_2121'),
- ]
-
- operations = [
- migrations.CreateModel(
- name='CcgNote',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('title', models.CharField(blank=True, max_length=250, null=True)),
- ('slug', models.SlugField(blank=True, unique_for_date='pub_date')),
- ('pub_date', models.DateTimeField(default=django.utils.timezone.now)),
- ('date_last_updated', models.DateTimeField(blank=True, verbose_name='Date')),
- ('body_html', models.TextField(blank=True)),
- ('body_markdown', models.TextField(verbose_name='Note')),
- ('status', models.IntegerField(choices=[(0, 'Draft'), (1, 'Published')], default=1)),
- ('tags', taggit.managers.TaggableManager(blank=True, help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags')),
- ],
- ),
- ]