Commit d4221ca1 authored by Hyomin Lee's avatar Hyomin Lee

Testing

parent ed6060b7
No preview for this file type
from django.contrib import admin
# Register your models here.
from .models import WidgetUser
admin.site.register(WidgetUser)
# Generated by Django 4.0.3 on 2022-03-16 16:16
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='WidgetUser',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('first_name', models.CharField(max_length=50)),
('middle_name', models.CharField(max_length=50)),
('last_name', models.CharField(max_length=50)),
('title', models.CharField(max_length=50)),
],
),
]
......@@ -4,6 +4,7 @@ class WidgetUser(models.Model):
first_name = models.CharField(max_length = 50)
middle_name = models.CharField(max_length= 50)
last_name = models.CharField(max_length = 50)
title = models.CharField(max_length = 50)
def __str__(self):
return self.last_name
......@@ -34,6 +34,7 @@ ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'homepage.apps.HomepageConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment