Import db in mysql using command line Get link Facebook X Pinterest Email Other Apps December 20, 2022 mysql> mysql -u root -p mysql> use your_db_name; mysql> source /parth/yourfile file.sql; (note - don't enclose path in double and single quotes) Get link Facebook X Pinterest Email Other Apps Comments
Anonymous Migrations in Laravel September 12, 2023 id(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('posts'); } }; Read more
Git Commands August 14, 2021 Create new git branch from existing branch: Syntax: git branch <new-branch-name> <existing-branch-name> Example: git branch newone master Read more
React Don't Do's September 15, 2021 1. You may see people using componentWillMount to start AJAX calls to load data for your components. Don’t do this. We’ll get to that in the second. Read more
Comments
Post a Comment