added intermediate table

This commit is contained in:
Wyatt J. Miller 2020-11-05 00:43:08 -05:00
parent 34f4b060f8
commit 53fd0880a2

View File

@ -0,0 +1,13 @@
package com.wyattjmiller.classscheduleapp
object CourseTable {
val TABLE = "class"
val COL_ID = "_id"
val COL_NAME = "name"
val COL_DESCRIPTION = "description"
val COL_LOCATION = "location"
val COL_DAYOFWEEK = "dayofweek"
val COL_TIME = "time"
val COL_INSTRUCTOR = "instructor"
val COL_UPDATE_TIME = "updated"
}