Create basic API for models
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 2.1.1 on 2018-09-12 23:02
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('api', '0002_auto_20180912_2156'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='category',
|
||||
name='photo',
|
||||
field=models.ImageField(upload_to=''),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='tool',
|
||||
name='photo',
|
||||
field=models.ImageField(upload_to=''),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user