Skip to content

Commit

Permalink
migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
devxpy committed Oct 18, 2023
1 parent a99614d commit f8bc313
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Generated by Django 4.2.5 on 2023-10-18 14:33

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("app_users", "0008_appusertransaction"),
]

operations = [
migrations.AlterModelOptions(
name="appusertransaction",
options={"verbose_name": "Transaction"},
),
migrations.AlterUniqueTogether(
name="appusertransaction",
unique_together=set(),
),
migrations.AlterField(
model_name="appusertransaction",
name="invoice_id",
field=models.CharField(max_length=255, unique=True),
),
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Generated by Django 4.2.5 on 2023-10-18 14:33

import bots.custom_fields
from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("url_shortener", "0003_shortenedurl_enable_analytics_visitorclickinfo"),
]

operations = [
migrations.AlterModelOptions(
name="shortenedurl",
options={},
),
migrations.AddField(
model_name="shortenedurl",
name="content",
field=models.TextField(blank=True),
),
migrations.AddField(
model_name="shortenedurl",
name="content_type",
field=models.CharField(
blank=True, help_text="The content type of the content", max_length=255
),
),
migrations.AlterField(
model_name="shortenedurl",
name="url",
field=bots.custom_fields.CustomURLField(blank=True, max_length=2048),
),
migrations.AlterField(
model_name="visitorclickinfo",
name="ip_data",
field=models.JSONField(
blank=True,
help_text="IP address information fetched using https://iplist.cc/",
),
),
]

0 comments on commit f8bc313

Please sign in to comment.