createTables static method

dynamic createTables()

Implementation

static createTables() async {
  await ProgramQuery().createTable();
  await ProgramStageQuery().createTable();
  await ProgramStageSectionQuery().createTable();
  await ProgramStageDataElementOptionQuery().createTable();
  await AttributeOptionQuery().createTable();
  await ProgramTrackedEntityAttributeQuery().createTable();
  await ProgramStageDataElementQuery().createTable();
  await ProgramRuleQuery().createTable();
  await ProgramRuleActionQuery().createTable();
  await ProgramRuleVariableQuery().createTable();
}