lots of updates :/
This commit is contained in:
18
socials/migrations/0011_sociallink_star.py
Normal file
18
socials/migrations/0011_sociallink_star.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.1.1 on 2025-10-17 21:44
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('socials', '0010_socialimg'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='sociallink',
|
||||
name='star',
|
||||
field=models.BooleanField(default=0),
|
||||
),
|
||||
]
|
||||
@@ -60,6 +60,7 @@ class SocialLink(models.Model):
|
||||
|
||||
published = models.BooleanField(default=0)
|
||||
pub_link = models.URLField(blank=True, null=True)
|
||||
star = models.BooleanField(default=0)
|
||||
|
||||
class Meta:
|
||||
unique_together = ("uri",)
|
||||
|
||||
Reference in New Issue
Block a user