|
@@ -0,0 +1,32 @@
|
|
|
+# Generated by Django 3.0.8 on 2020-07-28 08:10
|
|
|
+
|
|
|
+from django.db import migrations, models
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ initial = True
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.CreateModel(
|
|
|
+ name='Payment',
|
|
|
+ fields=[
|
|
|
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
|
+ ('payment_type', models.CharField(max_length=100)),
|
|
|
+ ('price_type', models.CharField(max_length=100)),
|
|
|
+ ('item_type', models.CharField(max_length=100)),
|
|
|
+ ('index_type', models.CharField(max_length=100)),
|
|
|
+ ('index_price', models.IntegerField()),
|
|
|
+ ('year', models.CharField(max_length=4)),
|
|
|
+ ('month', models.CharField(max_length=2)),
|
|
|
+ ],
|
|
|
+ options={
|
|
|
+ 'verbose_name': '支出报表',
|
|
|
+ 'verbose_name_plural': '支出报表列表',
|
|
|
+ 'db_table': 'pay',
|
|
|
+ },
|
|
|
+ ),
|
|
|
+ ]
|