blob: 38c85f719b88c511f75c306c392460126f3328d3 [file] [log] [blame]
// Signature format: 3.0
package androidx.room {
@RestrictTo({androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP}) public class RoomMasterTable {
method public static String! createInsertQuery(String!);
field public static final String CREATE_QUERY = "CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)";
field public static final String DEFAULT_ID = "42";
field public static final String NAME = "room_master_table";
field public static final String READ_QUERY = "SELECT identity_hash FROM room_master_table WHERE id = 42 LIMIT 1";
field public static final String TABLE_NAME = "room_master_table";
}
}