tables_standard.json 362 B

123456789
  1. [
  2. {
  3. "data_file": "employe_sample.csv",
  4. "create_sql": "CREATE TABLE `employe_sample` (\n `code` text ,\n `description` text ,\n `total_emp` int ,\n `salary` int )\n",
  5. "insert_sql": "INSERT INTO employe_sample (`code`, `description`, `total_emp`, `salary`)\nVALUES %(values)s",
  6. "table_name": "employe_sample",
  7. "transactional": true
  8. }
  9. ]