From f36f81f098934d1787b00db9911f149f1861b907 Mon Sep 17 00:00:00 2001 From: Marina Zozirova Date: Fri, 26 Apr 2024 09:27:54 +0000 Subject: [PATCH] =?utf8?q?=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=20?= =?utf8?q?=D1=82=D0=B8=D0=BF=20=D0=BA=D0=BE=D0=BB=D0=BE=D0=BD=D0=BA=D0=B8,?= =?utf8?q?=20=D1=82=D0=B0=D0=BA=20=D0=BA=D0=B0=D0=BA=20=D0=BF=D1=80=D0=B8?= =?utf8?q?=20=D1=84=D0=B8=D0=BB=D1=8C=D1=82=D1=80=D0=B0=D1=86=D0=B8=D0=B8?= =?utf8?q?=20=D0=B2=D1=8B=D0=BF=D0=B0=D0=B4=D0=B0=D0=BB=D0=B0=20=D0=BE?= =?utf8?q?=D1=88=D0=B8=D0=B1=D0=BA=D0=B0=20=D0=BE=20=D1=81=D0=BB=D0=B8?= =?utf8?q?=D1=88=D0=BA=D0=BE=D0=BC=20=D0=B4=D0=BB=D0=B8=D0=BD=D0=BD=D0=BE?= =?utf8?q?=D0=BC...?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- ...nge_column_url_type_on_page_statistics.php | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 erp24/migrations/m240426_092235_change_column_url_type_on_page_statistics.php diff --git a/erp24/migrations/m240426_092235_change_column_url_type_on_page_statistics.php b/erp24/migrations/m240426_092235_change_column_url_type_on_page_statistics.php new file mode 100644 index 00000000..47868e1a --- /dev/null +++ b/erp24/migrations/m240426_092235_change_column_url_type_on_page_statistics.php @@ -0,0 +1,26 @@ +alterColumn('page_statistics', 'url', $this->text()); + } + + /** + * {@inheritdoc} + */ + public function safeDown() + { + $this->alterColumn('page_statistics', 'url', $this->string(255)); + } + +} -- 2.39.5