🍲dfcv🏰dd⋉(● ∸ ●)⋊@% PNG %k25u25%fgd5n! PNG %k25u25%fgd5n!2014_10_12_000000_create_users_table.php000064400000001516152427527140013173 0ustar00increments('id'); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } } 2022_06_29_075906_create_product_queries_table.php000064400000001551152427527140015315 0ustar00id(); $table->integer('customer_id'); $table->integer('seller_id')->nullable(); $table->integer('product_id'); $table->longText('question'); $table->longText('reply')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('product_queries'); } } 2019_12_14_000001_create_personal_access_tokens_table.php000064400000001620152427527140016567 0ustar00bigIncrements('id'); $table->morphs('tokenable'); $table->string('name'); $table->string('token', 64)->unique(); $table->text('abilities')->nullable(); $table->timestamp('last_used_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('personal_access_tokens'); } } 2014_10_12_100000_create_password_resets_table.php000064400000001313152427527140015255 0ustar00string('email')->index(); $table->string('token'); $table->timestamp('created_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('password_resets'); } }