Ignore:
Timestamp:
10/21/21 23:45:59 (3 years ago)
Author:
beratkjufliju <kufliju@…>
Branches:
develop, master
Children:
4b7e2d3
Parents:
6b95845
Message:

added fileTypes controller, notifications, excel export, edited views

File:
1 edited

Legend:

Unmodified
Added
Removed
  • database/migrations/2021_09_27_171107_create_users_table.php

    r6b95845 rc6b84df  
    2020            $table->string('surname');
    2121            $table->string('username')->unique();
    22             $table->string('password');
    2322            $table->string('email')->unique();
    2423            $table->string('phone_number')->unique();
     
    3029            $table->boolean('is_confirmed')->default(false);
    3130            $table->boolean('is_forgot_password')->default(false);
     31            $table->integer("created_by")->unsigned();
    3232            $table->integer('security_code')->nullable();
    3333            $table->string('verify_token')->nullable();
    34             $table->integer("created_by")->unsigned();
     34            $table->string('password');
    3535            $table->rememberToken();
    3636            $table->timestamps();
Note: See TracChangeset for help on using the changeset viewer.