| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
-
- /**
- * @Name minecraft_month_paid
- * @Unique Month, Year
- */
- class MinecraftMonthPaid extends Entity
- {
- /**
- * @DB-Column
- * @Name ID
- * @Type INT
- * @Primary
- * @AutoIncrement
- * @NotNull
- */
- public $ID;
- /**
- * @DB-Column
- * @Name Amount
- * @Type DECIMAL(10,2)
- * @NotNull
- */
- public $Amount;
- /**
- * @DB-Column
- * @Name Month
- * @Type INT(4)
- * @NotNull
- */
- public $Month;
- /**
- * @DB-Column
- * @Name Year
- * @Type INT
- * @NotNull
- */
- public $Year;
- }
|