Added Breeze
This commit is contained in:
@@ -11,12 +11,27 @@ return new class extends Migration
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('contact_roles', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->string('description')->nullable();
|
||||
$table->timestamp('created_at')->default(now());
|
||||
$table->timestamp('updated_at')->useCurrent();
|
||||
});
|
||||
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->string('last_name')->nullable();
|
||||
$table->string('phone')->nullable();
|
||||
$table->string('vk_id')->nullable();
|
||||
$table->string('email')->unique();
|
||||
$table->boolean('use_as_contact')->default(false);
|
||||
$table->integer('contact_role')->default(0);
|
||||
$table->string('img_small')->nullable();
|
||||
$table->string('img_large')->nullable();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('password');
|
||||
$table->string('password')->nullable();
|
||||
$table->rememberToken();
|
||||
$table->timestamps();
|
||||
});
|
||||
@@ -42,6 +57,7 @@ return new class extends Migration
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('contact_roles');
|
||||
Schema::dropIfExists('users');
|
||||
Schema::dropIfExists('password_reset_tokens');
|
||||
Schema::dropIfExists('sessions');
|
||||
|
||||
Reference in New Issue
Block a user