add missing .sql files
commit39b2589181322c0a8886dca7a1e9d4371f77e36c
authorSebastian Hoß <seb@hoß.de>
Sun, 22 May 2022 16:20:29 +0000 (22 18:20 +0200)
committerSebastian Hoß <seb@hoß.de>
Sun, 22 May 2022 16:20:29 +0000 (22 18:20 +0200)
tree860ac6c9be416046094dc18a006fbc5ea329d199
parent44dfbbf1cec246fa8ab6ff7c700b0120fbaf0da1
add missing .sql files
30 files changed:
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/company/deleteAllCompanies.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/company/findCompanies.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/company/findCompany.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/company/findCompanyByDepartment.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/company/insertCompany.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/department/deleteAllDepartments.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/department/deleteDepartment.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/department/findDepartmentsByCompany.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/department/insertDepartment.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/department/updateDepartmentsOfCompany.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/employee/deleteAllEmployee.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/employee/deleteEmployee.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/employee/findEmployeesWithMinSalary.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/employee/insertEmployee.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/employee/updateEmployee.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/maintenance/getVersion.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/project/findProjectsWithMinCosts.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/project/insertProject.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/projectEmployee/insertProjectEmployee.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/schema/createCompaniesTable.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/schema/createDepartmentsTable.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/schema/createEmployeesTable.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/schema/createProjectEmployeesTable.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/schema/createProjectsTable.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/schema/createVersionAlias.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/schema/dropCompaniesTable.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/schema/dropDepartmentTable.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/schema/dropEmployeesTable.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/schema/dropProjectEmployeesTable.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-dao/src/main/yosql/schema/dropProjectsTable.sql [new file with mode: 0644]