Serving a payment option for my minecraft server so I don't have to pay for it all alone
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

MinecraftServerSubscription.class.php 777B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * @Name minecraft_server_subscription
  4. */
  5. class MinecraftServerSubscription extends Entity {
  6. /**
  7. * @DB-Column
  8. * @Name ID
  9. * @Type INT
  10. * @Primary
  11. * @AutoIncrement
  12. * @NotNull
  13. */
  14. public $ID;
  15. /**
  16. * @DB-Relation
  17. * @Field ID
  18. * @FieldName ConcerningServerID
  19. * @ManyToOne
  20. * @OnUpdate CASCADE
  21. * @OnDelete CASCADE
  22. * @var MinecraftServer
  23. */
  24. public $ConcerningServer;
  25. /**
  26. * @DB-Relation
  27. * @Field ID
  28. * @FieldName UnlockedUserID
  29. * @ManyToOne
  30. * @OnUpdate CASCADE
  31. * @OnDelete CASCADE
  32. * @var MinecraftUser
  33. */
  34. public $UnlockedUser;
  35. /**
  36. * @DB-Column
  37. * @Name SubscriptionDate
  38. * @Default CURRENT_TIMESTAMP
  39. * @Type TIMESTAMP
  40. * @NotNull
  41. */
  42. public $SubscriptionDate;
  43. }