mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-11-04 02:53:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			88 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import unicode_literals
 | 
						|
 | 
						|
import django.contrib.auth.models
 | 
						|
import django.db.models.deletion
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [("core", "0001_initial")]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.CreateModel(
 | 
						|
            name="Subscription",
 | 
						|
            fields=[
 | 
						|
                (
 | 
						|
                    "id",
 | 
						|
                    models.AutoField(
 | 
						|
                        primary_key=True,
 | 
						|
                        serialize=False,
 | 
						|
                        verbose_name="ID",
 | 
						|
                        auto_created=True,
 | 
						|
                    ),
 | 
						|
                ),
 | 
						|
                (
 | 
						|
                    "subscription_type",
 | 
						|
                    models.CharField(
 | 
						|
                        choices=[
 | 
						|
                            ("amicale/doceo", "Amicale/DOCEO member"),
 | 
						|
                            ("assidu", "Assidu member"),
 | 
						|
                            ("crous", "CROUS member"),
 | 
						|
                            ("cursus-alternant", "Branch cursus"),
 | 
						|
                            ("cursus-branche", "Branch cursus"),
 | 
						|
                            ("cursus-tronc-commun", "Common core cursus"),
 | 
						|
                            ("deux-semestres", "Two semesters"),
 | 
						|
                            ("membre-honoraire", "Honorary member"),
 | 
						|
                            ("reseau-ut", "UT network member"),
 | 
						|
                            ("sbarro/esta", "Sbarro/ESTA member"),
 | 
						|
                            ("un-semestre", "One semester"),
 | 
						|
                        ],
 | 
						|
                        max_length=255,
 | 
						|
                        verbose_name="subscription type",
 | 
						|
                    ),
 | 
						|
                ),
 | 
						|
                (
 | 
						|
                    "subscription_start",
 | 
						|
                    models.DateField(verbose_name="subscription start"),
 | 
						|
                ),
 | 
						|
                ("subscription_end", models.DateField(verbose_name="subscription end")),
 | 
						|
                (
 | 
						|
                    "payment_method",
 | 
						|
                    models.CharField(
 | 
						|
                        choices=[
 | 
						|
                            ("CHECK", "Check"),
 | 
						|
                            ("CARD", "Credit card"),
 | 
						|
                            ("CASH", "Cash"),
 | 
						|
                            ("EBOUTIC", "Eboutic"),
 | 
						|
                            ("OTHER", "Other"),
 | 
						|
                        ],
 | 
						|
                        max_length=255,
 | 
						|
                        verbose_name="payment method",
 | 
						|
                    ),
 | 
						|
                ),
 | 
						|
                (
 | 
						|
                    "location",
 | 
						|
                    models.CharField(
 | 
						|
                        choices=[
 | 
						|
                            ("BELFORT", "Belfort"),
 | 
						|
                            ("SEVENANS", "Sevenans"),
 | 
						|
                            ("MONTBELIARD", "Montbéliard"),
 | 
						|
                        ],
 | 
						|
                        max_length=20,
 | 
						|
                        verbose_name="location",
 | 
						|
                    ),
 | 
						|
                ),
 | 
						|
            ],
 | 
						|
            options={"ordering": ["subscription_start"]},
 | 
						|
        ),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="subscription",
 | 
						|
            name="member",
 | 
						|
            field=models.ForeignKey(
 | 
						|
                on_delete=django.db.models.deletion.CASCADE,
 | 
						|
                to="core.User",
 | 
						|
                related_name="subscriptions",
 | 
						|
            ),
 | 
						|
        ),
 | 
						|
    ]
 |