mirror of
https://github.com/knex/knex.git
synced 2025-11-26 15:07:16 +00:00
7 lines
138 B
Plaintext
7 lines
138 B
Plaintext
const tableName = 'table_name';
|
|
|
|
exports.seed = (knex) => {
|
|
// Deletes ALL existing entries
|
|
return knex(`tbl_${tableName}`).del();
|
|
};
|