
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@shagital/adonisjs-seeder-generator
Advanced tools
An AdonisJS (nodejs) package to generate seeder files from existing DB table data
This package allows you easily generate seeder files for your AdonisJS app from existing Database table files!
You can install the package via composer:
npm install @shagital/adonisjs-seeder-generator
Or with yarn
yarn add @shagital/adonisjs-seeder-generator
Open start/app.js
and add @shagital/adonisjs-seeder-generator/src/Commands/SeederGeneratorCommand
to the commands array
adonis
with node ace
if adonis is not installed globally on your system.Will generate migration files for all tables in the DB set as default, and save files in database/seeds
directory
adonis seed:generate
adonis seed:generate --include=table1,table2
adonis seed:generate --exclude=table1,table2
NOTE: Connection type must have been specified in
config/databases
adonis seed:generate --connection=mysql2
NOTE: The package will attempt to create the specified directory if it doesn't exist
adonis seed:generate --path=/var/www/html/backups
This option is suitable for an application that hasn't gotten to production
NOTE: The table content will be wiped! ENSURE THE TABLE IS BACKED UP JUST IN CASE!!!
adonis seed:generate --force
'use strict';
/*
|--------------------------------------------------------------------------
| CitiesSeeder
|--------------------------------------------------------------------------
|
| Make use of the Factory instance to seed database with dummy data or
| make use of Lucid models directly.
|
*/
const Database = use('Database');
class CitiesSeeder {
async run () {
await Database.connection('mysql').table('cities').truncate();
let data = [
{
"id": 219,
"name": "Kuçovë",
"country_id": 3,
"state_id": 629,
"country_code": "AL",
"state_code": "BR",
"latitude": 40.80028,
"longitude": 19.91667
},
{
"id": 280,
"name": "Çorovodë",
"country_id": 3,
"state_id": 629,
"country_code": "AL",
"state_code": "BR",
"latitude": 40.50417,
"longitude": 20.22722
}
...
];
var i, j, temparray, chunk = 1000;
for (i = 0,j = data.length; i < j; i += chunk) {
temparray = data.slice(i, i+chunk);
await Database.connection('mysql').table('cities').insert(temparray);
}
}
}
module.exports = CitiesSeeder;
Please see CHANGELOG for more information what has changed recently.
If you have a feature you'd like to add, kindly send a Pull Request (PR)
If you discover any security related issues, please email zacchaeus@shagital.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
FAQs
An AdonisJS (nodejs) package to generate seeder files from existing DB table data
The npm package @shagital/adonisjs-seeder-generator receives a total of 1 weekly downloads. As such, @shagital/adonisjs-seeder-generator popularity was classified as not popular.
We found that @shagital/adonisjs-seeder-generator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.