aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/migrations/0002_address.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-02-18 16:07:33 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2020-02-18 16:07:33 +0000
commitf739c571945dce2407a97c2b87ed5867b77a5f3d (patch)
tree3e01203de5e9e2a8dc99a323a8b2978c8b9f1459 /ctrack/organisations/migrations/0002_address.py
parent52dab6236c433bd4ee34f03bf7bae470cf384d8a (diff)
start fresh with migrations - might have to DROP DB and migrate again
Diffstat (limited to '')
-rw-r--r--ctrack/organisations/migrations/0002_address.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/ctrack/organisations/migrations/0002_address.py b/ctrack/organisations/migrations/0002_address.py
deleted file mode 100644
index 59227d4..0000000
--- a/ctrack/organisations/migrations/0002_address.py
+++ /dev/null
@@ -1,27 +0,0 @@
-# Generated by Django 2.2.9 on 2020-01-20 20:39
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('organisations', '0001_initial'),
- ]
-
- operations = [
- migrations.CreateModel(
- name='Address',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('line1', models.CharField(max_length=255)),
- ('line2', models.CharField(max_length=255)),
- ('line3', models.CharField(max_length=255)),
- ('city', models.CharField(max_length=100)),
- ('county', models.CharField(max_length=100)),
- ('postcode', models.CharField(max_length=10)),
- ('country', models.CharField(max_length=100)),
- ('other_details', models.CharField(max_length=255)),
- ],
- ),
- ]