Skip to content

Commit

Permalink
Update migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
tanrax committed Sep 29, 2023
1 parent ac7553d commit e938d7e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 27 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/build/
/dist/
/django_liveview.egg-info/
/liveview/migrations/__pycache__/
32 changes: 6 additions & 26 deletions liveview/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 4.2 on 2023-09-28 13:41
# Generated by Django 4.2.5 on 2023-09-29 16:52

from django.conf import settings
from django.db import migrations, models
Expand All @@ -15,32 +15,12 @@ class Migration(migrations.Migration):

operations = [
migrations.CreateModel(
name="Client",
name='Client',
fields=[
(
"id",
models.BigAutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
(
"channel_name",
models.CharField(
blank=True, default=None, max_length=200, null=True
),
),
("created_at", models.DateTimeField(auto_now_add=True)),
(
"user",
models.ForeignKey(
null=True,
on_delete=django.db.models.deletion.CASCADE,
to=settings.AUTH_USER_MODEL,
),
),
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('channel_name', models.CharField(blank=True, default=None, max_length=200, null=True)),
('created_at', models.DateTimeField(auto_now_add=True)),
('user', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
],
),
]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name="django-liveview",
py_modules=["liveview"],
version="1.0.3",
version="1.0.4",
python_requires=">3.7",
description="Framework for creating Realtime SPAs using HTML over the Wire technology in Django",
author="Andros Fenollosa",
Expand Down

0 comments on commit e938d7e

Please sign in to comment.