34 lines
934 B
Python
34 lines
934 B
Python
from django.db import models
|
|
|
|
|
|
class VMTemplate(models.Model):
|
|
name = models.CharField(max_length=50)
|
|
opennebula_vm_template_id = models.IntegerField()
|
|
|
|
@classmethod
|
|
def create(cls, name, opennebula_vm_template_id):
|
|
vm_template = cls(
|
|
name=name, opennebula_vm_template_id=opennebula_vm_template_id)
|
|
return vm_template
|
|
|
|
|
|
class StripePlan(models.Model):
|
|
"""
|
|
A model to store Data Center Light's created Stripe plans
|
|
"""
|
|
stripe_plan_id = models.CharField(max_length=256, null=True)
|
|
|
|
@classmethod
|
|
def create(cls, stripe_plan_id):
|
|
stripe_plan = cls(stripe_plan_id=stripe_plan_id)
|
|
return stripe_plan
|
|
|
|
|
|
class ContactUs(models.Model):
|
|
name = models.CharField(max_length=250)
|
|
email = models.CharField(max_length=250)
|
|
message = models.TextField()
|
|
field = models.DateTimeField(auto_now_add=True)
|
|
|
|
def __str__(self):
|
|
return self.name
|