Happie coding
Tuesday, May 7, 2019
Wipe db or drop db contents (with foreign key constraint)
drop db contents
SET FOREIGN_KEY_CHECKS=0;
TRUNCATE `db_name`.`table_name`;
SET FOREIGN_KEY_CHECKS=1;
wipe db
php artisan migrate:fresh
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)