diff --git a/backend/modules/sales/migrations/m210203_210227_add_stripe_customer_id_column_to_player_table.php b/backend/modules/sales/migrations/m210203_210227_add_stripe_customer_id_column_to_player_table.php deleted file mode 100644 index c57ebf79e..000000000 --- a/backend/modules/sales/migrations/m210203_210227_add_stripe_customer_id_column_to_player_table.php +++ /dev/null @@ -1,25 +0,0 @@ -addColumn('{{%player}}', 'stripe_customer_id', $this->string()->defaultValue(null)); - } - - /** - * {@inheritdoc} - */ - public function safeDown() - { - $this->dropColumn('{{%player}}', 'stripe_customer_id'); - } -}