increments('id'); $table->string('alum_id', 10)->nullable(); $table->string('first_name', 30)->nullable(); $table->string('last_name', 40)->nullable(); $table->string('nic_name', 20)->nullable(); $table->string('birthday', 20)->nullable(); $table->char('age', 2)->nullable(); $table->char('sex', 1)->nullable(); $table->string('picture', 30)->nullable(); $table->string('numid', 13)->nullable(); $table->string('schid', 5)->nullable(); $table->string('yearfin', 4)->nullable(); $table->string('email', 40)->nullable(); $table->string('website', 50)->nullable(); $table->string('address', 100)->nullable(); $table->string('amper', 40)->nullable(); $table->string('province', 20)->nullable(); $table->string('school', 100)->nullable(); $table->string('WORK', 100)->nullable(); $table->string('hobby', 100)->nullable(); $table->string('COMMENT', 100)->nullable(); $table->string('icon', 20)->nullable(); $table->string('icq', 10)->nullable(); $table->string('msn', 50)->nullable(); $table->string('yahoo', 30)->nullable(); $table->string('qq', 10)->nullable(); $table->char('cam', 1)->nullable(); $table->char('mic', 1)->nullable(); $table->char('emo', 3)->nullable(); $table->string('worksta', 100)->nullable(); $table->string('tel', 20)->nullable(); $table->string('zipcode', 20)->nullable(); $table->package::package.fieldtype.KEY('PRIMARY')->nullable(); $table->package::package.fieldtype.KEY('id),')->nullable(); $table->string('slug', 100)->nullable(); $table->integer('user_id')->nullable(); $table->string('upload_folder', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('web_alumni'); } }