diff --git a/db/migrations/20230606151521_add_index_to_sms_timestamps.php b/db/migrations/20230606151521_add_index_to_sms_timestamps.php deleted file mode 100644 index 53228de..0000000 --- a/db/migrations/20230606151521_add_index_to_sms_timestamps.php +++ /dev/null @@ -1,24 +0,0 @@ -table('sended'); - $table->addIndex('at'); - $table->update(); - - $table = $this->table('received'); - $table->addIndex('at'); - $table->update(); - - $table = $this->table('scheduled'); - $table->addIndex('at'); - $table->update(); - } -} diff --git a/db/migrations/20230606180455_add_index_on_sended_uid.php b/db/migrations/20230606180455_add_index_on_sended_uid.php deleted file mode 100644 index 06ea6e9..0000000 --- a/db/migrations/20230606180455_add_index_on_sended_uid.php +++ /dev/null @@ -1,24 +0,0 @@ -table('sended'); - $table->changeColumn('uid', 'string', ['limit' => 100]); - $table->addIndex('uid'); - $table->update(); - - - $table = $this->table('call'); - $table->changeColumn('uid', 'string', ['limit' => 100]); - $table->addIndex('uid'); - $table->update(); - } -}