Skip to content

Commit 7e7644e

Browse files
committed
pruning old migration files
All these files are more than 1 month old, so I assume you have run `php artisan migrate` before. #1107 - 2025_03_15_080953_urls_add_android_ios_column.php #1108 - 2025_03_16_222030_urls_add_password_column.php #1109 - 2025_03_17_180914_urls_add_expire_column.php
1 parent d9b17d5 commit 7e7644e

4 files changed

Lines changed: 7 additions & 92 deletions

database/migrations/2018_08_03_114156_create_urls_table.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@ public function up(): void
3030
$table->boolean('is_custom');
3131
$table->text('destination');
3232
$table->string('title');
33+
$table->text('dest_android')->nullable();
34+
$table->text('dest_ios')->nullable();
35+
$table->string('password')->nullable();
36+
$table->dateTime('expires_at')->nullable();
37+
$table->integer('expired_clicks')->nullable();
38+
$table->longText('expired_url')->nullable();
39+
$table->text('expired_notes')->nullable();
3340
$table->boolean('forward_query')->default(true);
3441
$table->string('user_uid');
3542
$table->timestamps();

database/migrations/2025_03_15_080953_urls_add_android_ios_column.php

Lines changed: 0 additions & 30 deletions
This file was deleted.

database/migrations/2025_03_16_222030_urls_add_password_column.php

Lines changed: 0 additions & 28 deletions
This file was deleted.

database/migrations/2025_03_17_180914_urls_add_expire_column.php

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)