Created
May 29, 2018 18:07
-
-
Save mibrahimdev/7893e4ff0aad01ff5618955ea1c92fee to your computer and use it in GitHub Desktop.
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(tableName = "weather", indices = @Index(value = "date", unique = true)) | |
public class WeatherEntry { | |
@PrimaryKey(autoGenerate = true) private int id; | |
private int weatherIconId; | |
.. | |
.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment