From 5cde0221bbaf073d89a00cc25ea4667029964af9 Mon Sep 17 00:00:00 2001 From: Sylvain Le Bon <sylvain@happy-dev.fr> Date: Wed, 28 Feb 2018 20:37:40 +0100 Subject: [PATCH] feature: Federation model (fix #7) --- admin.py | 4 ++++ migrations/0001_initial.py | 24 ++++++++++++++++++++++++ migrations/__init__.py | 0 models.py | 11 +++++++++++ 4 files changed, 39 insertions(+) create mode 100644 admin.py create mode 100644 migrations/0001_initial.py create mode 100644 migrations/__init__.py create mode 100644 models.py diff --git a/admin.py b/admin.py new file mode 100644 index 00000000..13370eb9 --- /dev/null +++ b/admin.py @@ -0,0 +1,4 @@ +from django.contrib import admin +from .models import LDPSource + +admin.site.register(LDPSource) diff --git a/migrations/0001_initial.py b/migrations/0001_initial.py new file mode 100644 index 00000000..8edc9efa --- /dev/null +++ b/migrations/0001_initial.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11 on 2018-02-28 19:31 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='LDPSource', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('container', models.URLField()), + ('federation', models.CharField(max_length=255)), + ], + ), + ] diff --git a/migrations/__init__.py b/migrations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/models.py b/models.py new file mode 100644 index 00000000..a15e755c --- /dev/null +++ b/models.py @@ -0,0 +1,11 @@ +from django.db import models + +class LDPSource(models.Model): + container = models.URLField() + federation = models.CharField(max_length=255) + + class Meta: + rdf_type = 'hd:federation' + + def __str__(self): + return "{}: {}".format(self.federation, self.container) -- GitLab