mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-11-27 09:04:54 +00:00
jira-15 dashboard api profile, default image, top leaderboard API
This commit is contained in:
26
account/migrations/0003_defaulttaskimages.py
Normal file
26
account/migrations/0003_defaulttaskimages.py
Normal file
@ -0,0 +1,26 @@
|
||||
# Generated by Django 4.2.2 on 2023-07-07 10:23
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('account', '0002_useremailotp_user_type'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='DefaultTaskImages',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('task_name', models.CharField(max_length=15)),
|
||||
('image_url', models.URLField(blank=True, default=None, null=True)),
|
||||
('created_at', models.DateTimeField(auto_now_add=True)),
|
||||
('updated_at', models.DateTimeField(auto_now=True)),
|
||||
],
|
||||
options={
|
||||
'db_table': 'default_task_image',
|
||||
},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user