wip
This commit is contained in:
@@ -11,6 +11,7 @@ return new class extends Migration
|
|||||||
*/
|
*/
|
||||||
public function up(): void
|
public function up(): void
|
||||||
{
|
{
|
||||||
|
Schema::dropIfExists('tests');
|
||||||
Schema::create('tests', function (Blueprint $table) {
|
Schema::create('tests', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->string('phone')->nullable();
|
$table->string('phone')->nullable();
|
||||||
@@ -23,6 +24,6 @@ return new class extends Migration
|
|||||||
*/
|
*/
|
||||||
public function down(): void
|
public function down(): void
|
||||||
{
|
{
|
||||||
Schema::dropIfExists('test');
|
Schema::dropIfExists('tests');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user