createTableSymptomsData constant

String const createTableSymptomsData

Implementation

static const String createTableSymptomsData =
    "CREATE TABLE $tableSymptomsData ("
    "$columnID INTEGER PRIMARY KEY,"
    "$columnSymptomId INTEGER, "
    "$columnSymptomName TEXT, "
    "$columnCategoryId INTEGER, "
    "$columnCategoryName TEXT, "
    "$columnCategoryColor TEXT, "
    "$columnAssetPath TEXT, "
    "$columnIsVisibleCategory INTEGER DEFAULT 1, "
    "$columnIsCustomType INTEGER DEFAULT 0)";