Created
October 4, 2011 04:28
-
-
Save karad/1260908 to your computer and use it in GitHub Desktop.
Play Framework using CakePHP Database
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Entity | |
@Table(name="statuses") | |
public class Status extends Model{ | |
@Required | |
public String name; | |
public Date created; | |
public Date modified; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment