mirror of
https://github.com/knex/knex.git
synced 2025-07-03 15:10:07 +00:00
12 lines
279 B
Plaintext
12 lines
279 B
Plaintext
exports.seed = (knex) ->
|
|
# Deletes ALL existing entries
|
|
knex('table_name').del()
|
|
.then(() ->
|
|
# Inserts seed entries
|
|
knex('table_name').insert([
|
|
{id: 1, colName: 'rowValue1'},
|
|
{id: 2, colName: 'rowValue2'},
|
|
{id: 3, colName: 'rowValue3'}
|
|
])
|
|
)
|