Posts

Lebah notes

1. to change name path to reflect the folder name/rename:       project -> Properties -> Web Project Settings project/.settings/org.eclipse.wst.common.component 2. it will search for the start.vm in the landing page that rendered by     vtl->main->body wrapper 3. put mapping on hibernate.cfg.xml 4. run Tester.java to run the persistence     Persistence db = Persistence.db(); 5. Check db should be there 6.

Laravel

Permasalahan mysql laravel:  alter user 'root'@'localhost' identified with mysql_native_password by 'abc@123'; When u done with migration, but want to add column: Create a migration file using cli command: php artisan make:migration add_paid_to_users_table --table=users A file will be created in the  migrations  folder, open it in an editor. Add to the function up(): Schema::table( 'users' , function ( Blueprint $table ) { // Create new column // You probably want to make the new column nullable $table ->integer( 'paid' )->nullable()->after( 'status' ); } Add to the function down(), this will run in case migration fails for some reasons: $table->dropColumn('paid'); Run migration using cli command: php artisan migrate https://stackoverflow.com/questions/16791613/add-a-new-column-to-existing-table-in-a-migration