관리-도구
편집 파일: .bash_history
#1729114308 ls #1729114321 cd publc_html #1729114334 cd pubilc_html #1729114347 cd public_html #1729114385 clear #1729114390 ls #1729114404 php artisan make:migration create_job_applications_table #1729116379 php artisan migrate --path=database/migrations/2024_10_16_213325_create_job_applications_table.php #1729116544 clear #1729116745 php artisan make:controller JobApplicationsController #1731106279 php artisan make:migration create_gigs_table #1731106287 ls #1731106313 cd public_html #1731106327 php artisan make:migration create_gigs_table #1731107675 php artisan make:migration create_gigs_table --create=gigs #1731107963 php artisan migrate --path=database/migrations/2024_11_08_231435_create_gigs_table #1731107982 yes #1731108031 cd public_html #1731108049 php artisan migrate --path=database/migrations/2024_11_08_231435_create_gigs_table.php #1731108071 php artisan make:model Gig #1731108350 php artisan make:controller GigController #1732051096 cd Public_html #1732051112 cd public_html #1732051117 public function up() #1732051117 { Schema::table('candidate_notifications', function (Blueprint $table) { #1732051117 $table->string('company_name')->after('candidate_id'); #1732051117 $table->string('company_email')->after('company_name'); #1732051117 }); #1732051117 } #1732051117 public function down() #1732051117 { Schema::table('candidate_notifications', function (Blueprint $table) { #1732051117 $table->dropColumn(['company_name', 'company_email']); #1732051117 }); #1732051123 }clear #1732051129 clear #1732051146 php artisan make:migration add_company_details_to_candidate_notifications_table --table=candidate_notifications #1732051300 php artisan migrate --path=/database/migrations/2024_11_20_000000_add_company_details_to_candidate_notifications_table.php #1732051430 php artisan migrate --path=public_html/database/migrations/2024_11_19_211907_add_company_details_to_candidate_notifications_table.php #1732051513 ls #1732051560 php artisan migrate --path=/database/migrations/2024_11_19_211907_add_company_details_to_candidate_notifications_table.php #1732052009 clear #1732052014 php artisan make:migration create_candidate_notifications_table --create=candidate_notifications #1732052086 php artisan migrate --path=/database/migrations/2024_11_19_213335_create_candidate_notifications_table #1732060712 php artisan make:model CandidateNotification #1732060719 php artisan make:controller CandidateNotificationController