[MYSQL 起動 コマンド]dcm ps
1. 一旦mysql確認
cat docker-compose.yml
2. serviceを見る
dcm exec db sh
3. Docker-compose中のshellに接続します。
docker execと同じこと。
mysql -u「db_user_name(this is written in .env file))」 -p「(p stands for password)」
Enter password: (p
ES6 const、let、varの差異
基本的にES5までの変数宣言はvarに定義され、ES6からletとconstでも変数宣言をできるようになりました。 変数定義の三つの方法の相違点について整理して見ました。
1。scope
varとlet,constは変数が適用される範囲に違いがあります。
var の場合,function scope (関数範囲) を有し,let とconst の場合はblock scope (ブロック範囲) を有します。
//varの例var foo = "This is String
開発する際に主に使用するES2015文法(第四次:Destructuring and spread syntax)
“A promise is an object that may produce a single value some time in the future”
Promiseは,JavaScript 非同期処理に使用されるobject です。 ここで,JavaScript における非同期処理とは,"特定コードの実行が完了するまで待たず,次のコードを先に行うJavaScript の特性"を意味します。
たとえば, 銀行へ行って番号票を抜いて私の順番を待つ時, 選んだ番号表
After adding sql file into flyway history table, you have to remove it clearly in order to avoid to be built again next time you run flyway.
Remember, if it is operated on docker, add or remove sql files in the directory of ‘flyway/sql’
I tried to add prefix to equip_pic_url which is one of entity exists in database and return. There are several methods to do that including for-each statment. However, I tried something different.
1. Using eloquent
$image_url_pr