Include example project
This commit is contained in:
26
example_project/migrations/0001_initial.py
Normal file
26
example_project/migrations/0001_initial.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# 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,
|
||||
},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user