| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?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;
- }
|