更新
This commit is contained in:
41
Python-100-Days/Day41-55/oa/hrs/migrations/0001_initial.py
Normal file
41
Python-100-Days/Day41-55/oa/hrs/migrations/0001_initial.py
Normal file
@@ -0,0 +1,41 @@
|
||||
# Generated by Django 2.0.5 on 2018-05-22 03:07
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Dept',
|
||||
fields=[
|
||||
('no', models.IntegerField(primary_key=True, serialize=False)),
|
||||
('name', models.CharField(max_length=20)),
|
||||
('location', models.CharField(max_length=10)),
|
||||
],
|
||||
options={
|
||||
'db_table': 'tb_dept',
|
||||
},
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='Emp',
|
||||
fields=[
|
||||
('no', models.IntegerField(primary_key=True, serialize=False)),
|
||||
('name', models.CharField(max_length=20)),
|
||||
('job', models.CharField(max_length=10)),
|
||||
('mgr', models.IntegerField(null=True)),
|
||||
('sal', models.DecimalField(decimal_places=2, max_digits=7)),
|
||||
('comm', models.DecimalField(decimal_places=2, max_digits=7, null=True)),
|
||||
('dept', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='hrs.Dept')),
|
||||
],
|
||||
options={
|
||||
'db_table': 'tb_emp',
|
||||
},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user