You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.3 KiB

# 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
class AppMovie(models.Model):
moviename = models.CharField(max_length=100)
moviedate = models.CharField(max_length=100)
movieimge = models.CharField(max_length=100)
movietime = models.CharField(max_length=100)
movienum = models.CharField(max_length=100)
movietype = models.CharField(max_length=100)
class Meta:
managed = False
db_table = 'app_movie'
class AppMovie1(models.Model):
moviename = models.CharField(max_length=100)
moviedate = models.CharField(max_length=100)
movieimge = models.CharField(max_length=100)
movietime = models.CharField(max_length=100)
class Meta:
managed = False
db_table = 'app_movie1'
class AppMovie2(models.Model):
moviename = models.CharField(max_length=100)
moviedate = models.CharField(max_length=100)
movieimge = models.CharField(max_length=100)
movietime = models.CharField(max_length=100)
class Meta:
managed = False
db_table = 'app_movie2'
class AppMovie3(models.Model):
moviename = models.CharField(max_length=100)
moviedate = models.CharField(max_length=100)
movieimge = models.CharField(max_length=100)
movietime = models.CharField(max_length=100)
class Meta:
managed = False
db_table = 'app_movie3'
class AppMovie4(models.Model):
moviename = models.CharField(max_length=100)
moviedate = models.CharField(max_length=100)
movieimge = models.CharField(max_length=100)
movietime = models.CharField(max_length=100)
movienum = models.CharField(max_length=100)
class Meta:
managed = False
db_table = 'app_movie4'
class AppMovieTheater(models.Model):
name = models.CharField(max_length=100)
class Meta:
managed = False
db_table = 'app_movie_theater'