Skip to content

Commit

Permalink
Reset migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloj2001 committed Nov 7, 2023
1 parent edf337c commit a18bc88
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 74 deletions.
9 changes: 4 additions & 5 deletions api/optimeet/groups/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 4.1.12 on 2023-11-03 18:33
# Generated by Django 4.2.6 on 2023-11-07 19:21

from django.db import migrations, models

Expand All @@ -14,10 +14,9 @@ class Migration(migrations.Migration):
migrations.CreateModel(
name='Group',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('group_id', models.CharField(default='10', max_length=5, unique=True)),
('name', models.CharField(default='', max_length=30)),
('host_id', models.CharField(default='', max_length=64)),
('group_id', models.CharField(blank=True, max_length=10, primary_key=True, serialize=False)),
('name', models.CharField(max_length=30)),
('host_id', models.CharField(max_length=64)),
('max_capacity', models.IntegerField(default=5)),
('status', models.CharField(choices=[('A', 'Active'), ('F', 'Finished')], default='A', max_length=1)),
],
Expand Down

This file was deleted.

19 changes: 0 additions & 19 deletions api/optimeet/groups/migrations/0003_alter_group_group_id.py

This file was deleted.

This file was deleted.

0 comments on commit a18bc88

Please sign in to comment.