bolt.new/db/migrations/20241022093005_insert_initial_token_reload.js
2024-10-22 02:19:22 +00:00

15 lines
304 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export function up(knex) {
return knex('token_reloads').insert([
{
name: '代币充值',
tokens: 10000000,
price: 20.00,
description: '非订阅代币购买每次充值10,000,000代币',
}
]);
}
export function down(knex) {
return knex('token_reloads').del();
}