diff --git a/database/migrations/2019_08_19_000000_create_failed_jobs_table.php b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php deleted file mode 100644 index 6aa6d74..0000000 --- a/database/migrations/2019_08_19_000000_create_failed_jobs_table.php +++ /dev/null @@ -1,36 +0,0 @@ -id(); - $table->string('uuid')->unique(); - $table->text('connection'); - $table->text('queue'); - $table->longText('payload'); - $table->longText('exception'); - $table->timestamp('failed_at')->useCurrent(); - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('failed_jobs'); - } -} diff --git a/database/migrations/2021_02_09_071732_create_crud_table.php b/database/migrations/2021_02_09_071732_create_crud_table.php deleted file mode 100644 index 72eec99..0000000 --- a/database/migrations/2021_02_09_071732_create_crud_table.php +++ /dev/null @@ -1,36 +0,0 @@ -id(); - $table->string('name')->nullable($value=false); - $table->string('city')->nullable($value=false); - $table->string('phone')->nullable($value=true); - $table->string('job')->nullable($value=true)->default($defaultjob); - $table->timestamps(); - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('crud'); - } -}