27 lines
756 B
Python
27 lines
756 B
Python
# Generated by Django 3.0.5 on 2020-04-18 12:18
|
|
|
|
from django.db import migrations, models
|
|
import jsignature.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ExampleModel',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('signature', jsignature.fields.JSignatureField(blank=True, null=True, verbose_name='Signature')),
|
|
('signature_date', models.DateTimeField(blank=True, null=True, verbose_name='Signature date')),
|
|
],
|
|
options={
|
|
'abstract': False,
|
|
},
|
|
),
|
|
]
|