Created
March 17, 2014 10:17
-
-
Save novotnyr/9596943 to your computer and use it in GitHub Desktop.
This file contains 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
import android.provider.BaseColumns; | |
public class Database { | |
public static final String NAME = "daygrid"; | |
public static final int VERSION = 1; | |
public interface DayColor extends BaseColumns { | |
public static final String TABLE_NAME = "daycolor"; | |
public static final String TIMESTAMP = "timestamp"; | |
public static final String COLOR = "color"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment