mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
feat: Ability to hide/show financial statement header.
This commit is contained in:
22
server/src/database/seeds/seed_subscriptions_plans.js
Normal file
22
server/src/database/seeds/seed_subscriptions_plans.js
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
exports.seed = (knex) => {
|
||||
// Deletes ALL existing entries
|
||||
return knex('subscriptions_plans').del()
|
||||
.then(() => {
|
||||
// Inserts seed entries
|
||||
return knex('subscriptions_plans').insert([
|
||||
{
|
||||
id: 1,
|
||||
name: 'basic',
|
||||
price: 80,
|
||||
signup_fee: 0,
|
||||
currency: 'LYD',
|
||||
trial_period: 0,
|
||||
trial_interval: '',
|
||||
|
||||
invoice_period: 1,
|
||||
invoice_interval: 'month',
|
||||
}
|
||||
]);
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user