Skip to content

Instantly share code, notes, and snippets.

@novotnyr
Created March 17, 2014 10:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save novotnyr/9596943 to your computer and use it in GitHub Desktop.
Save novotnyr/9596943 to your computer and use it in GitHub Desktop.
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