Back to project page HorribleSubs-Schedule.
The source code is released under:
Copyright (c) 2014, ?hsan I??k All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: ...
If you think the Android project HorribleSubs-Schedule listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package tr.xip.horriblesubsschedule.database.tables; /*from w w w . j ava 2s .c o m*/ import android.provider.BaseColumns; /** * Created by Hikari on 8/30/14. */ public class AnimeTable implements BaseColumns { public static final String TABLE_NAME = "table_anime"; public static final String COLUMN_NAME_ID = "id"; public static final String COLUMN_NAME_DAY = "day"; public static final String COLUMN_NAME_TITLE = "title"; public static final String COLUMN_NAME_RELEASE_TIME = "release_time"; public static final String COLUMN_NAME_NULLABLE = "nullable"; }