Example #1
0
 public function dropAction()
 {
     $tableName = $this->params('table');
     $schemaName = $this->params('schema');
     $data = $this->tableTaskService->dropTable($tableName, $schemaName);
     return new JsonModel(['data' => $data]);
 }