mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-11-04 02:53:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import unicode_literals
 | 
						|
 | 
						|
import django.db.models.deletion
 | 
						|
import django.utils.timezone
 | 
						|
from django.conf import settings
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [("core", "0011_auto_20161124_0848")]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.CreateModel(
 | 
						|
            name="Notification",
 | 
						|
            fields=[
 | 
						|
                (
 | 
						|
                    "id",
 | 
						|
                    models.AutoField(
 | 
						|
                        primary_key=True,
 | 
						|
                        verbose_name="ID",
 | 
						|
                        auto_created=True,
 | 
						|
                        serialize=False,
 | 
						|
                    ),
 | 
						|
                ),
 | 
						|
                ("url", models.CharField(max_length=255, verbose_name="url")),
 | 
						|
                ("text", models.CharField(max_length=512, verbose_name="text")),
 | 
						|
                (
 | 
						|
                    "type",
 | 
						|
                    models.CharField(
 | 
						|
                        max_length=16,
 | 
						|
                        choices=[
 | 
						|
                            ("FILE_MODERATION", "File moderation"),
 | 
						|
                            ("SAS_MODERATION", "SAS moderation"),
 | 
						|
                            ("NEW_PICTURES", "New pictures"),
 | 
						|
                        ],
 | 
						|
                        verbose_name="text",
 | 
						|
                        null=True,
 | 
						|
                        blank=True,
 | 
						|
                    ),
 | 
						|
                ),
 | 
						|
                (
 | 
						|
                    "date",
 | 
						|
                    models.DateTimeField(
 | 
						|
                        verbose_name="date", default=django.utils.timezone.now
 | 
						|
                    ),
 | 
						|
                ),
 | 
						|
                (
 | 
						|
                    "user",
 | 
						|
                    models.ForeignKey(
 | 
						|
                        on_delete=django.db.models.deletion.CASCADE,
 | 
						|
                        related_name="notifications",
 | 
						|
                        to=settings.AUTH_USER_MODEL,
 | 
						|
                    ),
 | 
						|
                ),
 | 
						|
            ],
 | 
						|
        )
 | 
						|
    ]
 |