Commit 11b25ed8 authored by Felizia Tiburcio's avatar Felizia Tiburcio

Create auction event model

parent d459b357
# This is an auto-generated Django model module.
# You'll have to do the following manually to clean this up:
# * Rearrange models' order
# * Make sure each model has one field with primary_key=True
# * Make sure each ForeignKey and OneToOneField has `on_delete` set to the desired behavior
# * Remove `managed = False` lines if you wish to allow Django to create, modify, and delete the table
# Feel free to rename the models, but don't rename db_table values or field names.
from django.db import models from django.db import models
# Create your models here.
class Auction(models.Model):
auctionid = models.AutoField(primary_key=True)
title = models.CharField(max_length=255)
info = models.CharField(max_length=255)
auctionstart = models.DateTimeField()
auctionend = models.DateTimeField()
class Meta:
managed = False
db_table = 'auction'
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