You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
555 B
23 lines
555 B
# Generated by Django 3.0.4 on 2020-04-15 01:20
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('vislib', '0003_auto_20200415_0913'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='sourcedatabase',
|
|
name='is_private',
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='sourcedatabase',
|
|
name='status',
|
|
field=models.IntegerField(default=1),
|
|
),
|
|
]
|
|
|