first commit
This commit is contained in:
BIN
updates/0.00/ver_0.001.zip
Normal file
BIN
updates/0.00/ver_0.001.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.002.zip
Normal file
BIN
updates/0.00/ver_0.002.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.003.zip
Normal file
BIN
updates/0.00/ver_0.003.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.004.zip
Normal file
BIN
updates/0.00/ver_0.004.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.005.zip
Normal file
BIN
updates/0.00/ver_0.005.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.006.zip
Normal file
BIN
updates/0.00/ver_0.006.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.007.zip
Normal file
BIN
updates/0.00/ver_0.007.zip
Normal file
Binary file not shown.
13
updates/0.00/ver_0.007_sql.txt
Normal file
13
updates/0.00/ver_0.007_sql.txt
Normal file
@@ -0,0 +1,13 @@
|
||||
CREATE TABLE pp_coupon ( id INT NOT NULL AUTO_INCREMENT , name VARCHAR(255) NOT NULL , PRIMARY KEY (id)) ENGINE = InnoDB CHARSET=utf8 COLLATE utf8_polish_ci;
|
||||
RENAME TABLE pp_coupon TO pp_shop_coupon;
|
||||
ALTER TABLE pp_shop_coupon ADD status INT NOT NULL DEFAULT '0' AFTER name;
|
||||
ALTER TABLE pp_shop_coupon ADD type INT NOT NULL DEFAULT '1' AFTER status;
|
||||
ALTER TABLE pp_shop_coupon ADD amount DECIMAL(12,2) NULL DEFAULT NULL AFTER type;
|
||||
ALTER TABLE pp_shop_coupon ADD one_time INT NOT NULL DEFAULT '1' AFTER amount;
|
||||
ALTER TABLE pp_shop_coupon ADD used INT NOT NULL DEFAULT '0' AFTER one_time;
|
||||
ALTER TABLE pp_shop_orders ADD coupon_id INT NULL DEFAULT NULL AFTER summary;
|
||||
ALTER TABLE pp_shop_orders ADD FOREIGN KEY (coupon_id) REFERENCES pp_shop_coupon(id) ON DELETE SET NULL ON UPDATE SET NULL;
|
||||
ALTER TABLE pp_shop_orders ADD coupon_amount DECIMAL(12,2) NULL DEFAULT NULL AFTER coupon_id;
|
||||
ALTER TABLE pp_shop_orders ADD coupon_summary DECIMAL(12,2) NULL DEFAULT NULL AFTER coupon_amount;
|
||||
ALTER TABLE pp_shop_coupon ADD date_used TIMESTAMP NULL DEFAULT NULL AFTER used;
|
||||
ALTER TABLE pp_shop_orders ADD coupon_type INT NULL DEFAULT NULL AFTER coupon_id;
|
||||
BIN
updates/0.00/ver_0.008.zip
Normal file
BIN
updates/0.00/ver_0.008.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.009.zip
Normal file
BIN
updates/0.00/ver_0.009.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.010.zip
Normal file
BIN
updates/0.00/ver_0.010.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.011.zip
Normal file
BIN
updates/0.00/ver_0.011.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.012.zip
Normal file
BIN
updates/0.00/ver_0.012.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.013.zip
Normal file
BIN
updates/0.00/ver_0.013.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.014.zip
Normal file
BIN
updates/0.00/ver_0.014.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.015.zip
Normal file
BIN
updates/0.00/ver_0.015.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.016.zip
Normal file
BIN
updates/0.00/ver_0.016.zip
Normal file
Binary file not shown.
1
updates/0.00/ver_0.016_sql.txt
Normal file
1
updates/0.00/ver_0.016_sql.txt
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE pp_pages ADD category_id INT NULL DEFAULT NULL AFTER start;
|
||||
BIN
updates/0.00/ver_0.017.zip
Normal file
BIN
updates/0.00/ver_0.017.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.018.zip
Normal file
BIN
updates/0.00/ver_0.018.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.019.zip
Normal file
BIN
updates/0.00/ver_0.019.zip
Normal file
Binary file not shown.
1
updates/0.00/ver_0.019_sql.txt
Normal file
1
updates/0.00/ver_0.019_sql.txt
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE pp_shop_attributes ADD google_feed_status INT NOT NULL DEFAULT '0' AFTER o;
|
||||
BIN
updates/0.00/ver_0.020.zip
Normal file
BIN
updates/0.00/ver_0.020.zip
Normal file
Binary file not shown.
1
updates/0.00/ver_0.020_sql.txt
Normal file
1
updates/0.00/ver_0.020_sql.txt
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE pp_shop_categories ADD sort_type INT NOT NULL DEFAULT '1' AFTER parent_id;
|
||||
BIN
updates/0.00/ver_0.021.zip
Normal file
BIN
updates/0.00/ver_0.021.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.022.zip
Normal file
BIN
updates/0.00/ver_0.022.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.023.zip
Normal file
BIN
updates/0.00/ver_0.023.zip
Normal file
Binary file not shown.
1
updates/0.00/ver_0.023_sql.txt
Normal file
1
updates/0.00/ver_0.023_sql.txt
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE pp_shop_orders ADD message TEXT NULL DEFAULT NULL AFTER coupon_summary;
|
||||
BIN
updates/0.00/ver_0.024.zip
Normal file
BIN
updates/0.00/ver_0.024.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.025.zip
Normal file
BIN
updates/0.00/ver_0.025.zip
Normal file
Binary file not shown.
1
updates/0.00/ver_0.025_sql.txt
Normal file
1
updates/0.00/ver_0.025_sql.txt
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE pp_shop_coupon ADD send INT NOT NULL DEFAULT '0' AFTER date_used;
|
||||
BIN
updates/0.00/ver_0.026.zip
Normal file
BIN
updates/0.00/ver_0.026.zip
Normal file
Binary file not shown.
1
updates/0.00/ver_0.026_sql.txt
Normal file
1
updates/0.00/ver_0.026_sql.txt
Normal file
@@ -0,0 +1 @@
|
||||
INSERT INTO pp_shop_payment_methods (id, name, description, status) VALUES (NULL, 'Przedpłata - szybkie płatności online (tpay.com)', 'Szybkie płatności transferami, przelewami oraz kartami kredytowymi.', '1')
|
||||
BIN
updates/0.00/ver_0.027.zip
Normal file
BIN
updates/0.00/ver_0.027.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.028.zip
Normal file
BIN
updates/0.00/ver_0.028.zip
Normal file
Binary file not shown.
1
updates/0.00/ver_0.028_sql.txt
Normal file
1
updates/0.00/ver_0.028_sql.txt
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE pp_shop_attributes_values ADD is_default INT NOT NULL DEFAULT '0' AFTER attribute_id;
|
||||
BIN
updates/0.00/ver_0.029.zip
Normal file
BIN
updates/0.00/ver_0.029.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.030.zip
Normal file
BIN
updates/0.00/ver_0.030.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.031.zip
Normal file
BIN
updates/0.00/ver_0.031.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.032.zip
Normal file
BIN
updates/0.00/ver_0.032.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.033.zip
Normal file
BIN
updates/0.00/ver_0.033.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.034.zip
Normal file
BIN
updates/0.00/ver_0.034.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.035.zip
Normal file
BIN
updates/0.00/ver_0.035.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.036.zip
Normal file
BIN
updates/0.00/ver_0.036.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.037.zip
Normal file
BIN
updates/0.00/ver_0.037.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.038.zip
Normal file
BIN
updates/0.00/ver_0.038.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.039.zip
Normal file
BIN
updates/0.00/ver_0.039.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.040.zip
Normal file
BIN
updates/0.00/ver_0.040.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.041.zip
Normal file
BIN
updates/0.00/ver_0.041.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.042.zip
Normal file
BIN
updates/0.00/ver_0.042.zip
Normal file
Binary file not shown.
7
updates/0.00/ver_0.042_sql.txt
Normal file
7
updates/0.00/ver_0.042_sql.txt
Normal file
@@ -0,0 +1,7 @@
|
||||
ALTER TABLE pp_shop_attributes CHANGE google_feed_status stock_influences INT(11) NOT NULL DEFAULT '0';
|
||||
CREATE TABLE pp_shop_promotion ( id INT NOT NULL AUTO_INCREMENT , name VARCHAR(255) NOT NULL , status INT NOT NULL DEFAULT '0' , PRIMARY KEY (id)) ENGINE = InnoDB CHARSET=utf8 COLLATE utf8_polish_ci;
|
||||
ALTER TABLE pp_shop_promotion ADD type INT NOT NULL DEFAULT '0' AFTER status;
|
||||
ALTER TABLE pp_shop_promotion ADD amount DECIMAL(12,2) NULL AFTER type;
|
||||
ALTER TABLE pp_shop_promotion ADD date_to DATE NULL DEFAULT NULL AFTER amount;
|
||||
ALTER TABLE pp_shop_promotion ADD categories VARCHAR(255) NULL DEFAULT NULL AFTER date_to;
|
||||
ALTER TABLE pp_shop_promotion ADD condition_categories VARCHAR(255) NULL DEFAULT NULL AFTER categories;
|
||||
BIN
updates/0.00/ver_0.043.zip
Normal file
BIN
updates/0.00/ver_0.043.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.044.zip
Normal file
BIN
updates/0.00/ver_0.044.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.045.zip
Normal file
BIN
updates/0.00/ver_0.045.zip
Normal file
Binary file not shown.
1
updates/0.00/ver_0.045_files.txt
Normal file
1
updates/0.00/ver_0.045_files.txt
Normal file
@@ -0,0 +1 @@
|
||||
F: ../admin/templates/shop-product/stock.php
|
||||
2
updates/0.00/ver_0.045_sql.txt
Normal file
2
updates/0.00/ver_0.045_sql.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE pp_shop_promotion ADD condition_type INT NOT NULL AFTER status;
|
||||
ALTER TABLE pp_shop_promotion CHANGE type discount_type INT(11) NOT NULL DEFAULT '0';
|
||||
BIN
updates/0.00/ver_0.046.zip
Normal file
BIN
updates/0.00/ver_0.046.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.047.zip
Normal file
BIN
updates/0.00/ver_0.047.zip
Normal file
Binary file not shown.
9
updates/0.00/ver_0.047_sql.txt
Normal file
9
updates/0.00/ver_0.047_sql.txt
Normal file
@@ -0,0 +1,9 @@
|
||||
ALTER TABLE pp_shop_coupon ADD include_discounted_product INT NOT NULL DEFAULT '0' AFTER send;
|
||||
ALTER TABLE pp_shop_promotion ADD include_coupon INT NOT NULL DEFAULT '0' AFTER condition_categories;
|
||||
ALTER TABLE pp_shop_promotion ADD include_product_promo INT NULL DEFAULT '0' AFTER include_coupon;
|
||||
ALTER TABLE pp_shop_coupon ADD UNIQUE(name);
|
||||
ALTER TABLE pp_shop_orders DROP coupon_type;
|
||||
ALTER TABLE pp_shop_orders DROP coupon_amount;
|
||||
ALTER TABLE pp_shop_orders DROP coupon_summary;
|
||||
ALTER TABLE pp_shop_order_products DROP price_netto;
|
||||
ALTER TABLE pp_shop_order_products ADD price_brutto_promo DECIMAL(12,2) NULL DEFAULT NULL AFTER price_brutto;
|
||||
BIN
updates/0.00/ver_0.048.zip
Normal file
BIN
updates/0.00/ver_0.048.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.049.zip
Normal file
BIN
updates/0.00/ver_0.049.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.050.zip
Normal file
BIN
updates/0.00/ver_0.050.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.051.zip
Normal file
BIN
updates/0.00/ver_0.051.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.052.zip
Normal file
BIN
updates/0.00/ver_0.052.zip
Normal file
Binary file not shown.
12
updates/0.00/ver_0.052_sql.txt
Normal file
12
updates/0.00/ver_0.052_sql.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
INSERT INTO pp_langs_translations (id, text, pl, en, ru, de, uk) VALUES (NULL, 'zamowienie-przyjete-do-realizacji', 'zamówienie przyjęte do realizacji', '', '', NULL, NULL)
|
||||
INSERT INTO pp_langs_translations (id, text, pl, en, ru, de, uk) VALUES (NULL, 'zamowienie-wyslane', 'zamówienie wysłane', '', '', NULL, NULL)
|
||||
INSERT INTO pp_langs_translations (id, text, pl, en, ru, de, uk) VALUES (NULL, 'zamowienie-zrealizowane', 'zamówienie zrealizowane', '', '', NULL, NULL)
|
||||
UPDATE pp_langs_translations SET pl = 'płatność sprawdzana ręcznie' WHERE text = 'platnosc-sprawdzana-recznie'
|
||||
INSERT INTO pp_langs_translations (id, text, pl, en, ru, de, uk) VALUES (NULL, 'zamowienie-nr-zostalo-oplacone', 'Zamówienie [NUMER] zostało opłacone', '', '', NULL, NULL)
|
||||
INSERT INTO pp_langs_translations (id, text, pl, en, ru, de, uk) VALUES (NULL, 'zamowienie-nr-zostalo-przyjete-do-realizacji', 'Zamówienie [NUMER] zostało przyjęte do realizacji', '', '', NULL, NULL)
|
||||
INSERT INTO pp_langs_translations (id, text, pl, en, ru, de, uk) VALUES (NULL, 'zamowienie-nr-zostalo-wyslane', 'Zamówienie [NUMER] zostało wysłane', '', '', NULL, NULL)
|
||||
INSERT INTO pp_langs_translations (id, text, pl, en, ru, de, uk) VALUES (NULL, 'zamowienie-nr-zostalo-zrealizowane', 'Zamówienie [NUMER] zostało zrealizowane', '', '', NULL, NULL)
|
||||
INSERT INTO pp_newsletter_templates ( name, text, is_admin) VALUES ( '#sklep-zmiana-statusu-zamowienie-oplacone', '<p>Witaj,<br />\r\nTwoje zamówienie nr <b>[NUMER_ZAMOWIENIA]</b>, złożone <strong>[DATA_ZAMOWIENIA]</strong> zmieniło status.<br />\r\n<br />\r\nAktualny status zamówienia: <b>[STATUS]</b>.<br />\r\n<br />\r\nDziękujemy za korzystanie z usług sklepu marianek.pl. Zapraszamy ponownie!</p>\r\n', 1);
|
||||
INSERT INTO pp_newsletter_templates ( name, text, is_admin) VALUES ( '#sklep-zmiana-statusu-zamowienie-przyjete-do-realizacji', '<p>Witaj,<br />\r\nTwoje zamówienie nr <b>[NUMER_ZAMOWIENIA]</b>, złożone <strong>[DATA_ZAMOWIENIA]</strong> zmieniło status.<br />\r\n<br />\r\nAktualny status zamówienia: <b>[STATUS]</b>.<br />\r\n<br />\r\nDziękujemy za korzystanie z usług sklepu marianek.pl. Zapraszamy ponownie!</p>\r\n', 1);
|
||||
INSERT INTO pp_newsletter_templates ( name, text, is_admin) VALUES ( '#sklep-zmiana-statusu-zamowienie-wyslane', '<p>Witaj,<br />\r\nTwoje zamówienie nr <b>[NUMER_ZAMOWIENIA]</b>, złożone <strong>[DATA_ZAMOWIENIA]</strong> zmieniło status.<br />\r\n<br />\r\nAktualny status zamówienia: <b>[STATUS]</b>.<br />\r\n<br />\r\nDziękujemy za korzystanie z usług sklepu marianek.pl. Zapraszamy ponownie!</p>\r\n', 1);
|
||||
INSERT INTO pp_newsletter_templates ( name, text, is_admin) VALUES ( '#sklep-zmiana-statusu-zamowienie-zrealizowane', '<p>Witaj,<br />\r\nTwoje zamówienie nr <b>[NUMER_ZAMOWIENIA]</b>, złożone <strong>[DATA_ZAMOWIENIA]</strong> zmieniło status.<br />\r\n<br />\r\nAktualny status zamówienia: <b>[STATUS]</b>.<br />\r\n<br />\r\nDziękujemy za korzystanie z usług sklepu marianek.pl. Zapraszamy ponownie!</p>\r\n', 1);
|
||||
BIN
updates/0.00/ver_0.053.zip
Normal file
BIN
updates/0.00/ver_0.053.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.054.zip
Normal file
BIN
updates/0.00/ver_0.054.zip
Normal file
Binary file not shown.
1
updates/0.00/ver_0.054_sql.txt
Normal file
1
updates/0.00/ver_0.054_sql.txt
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE pp_shop_coupon ADD categories VARCHAR(255) NULL DEFAULT NULL AFTER include_discounted_product;
|
||||
BIN
updates/0.00/ver_0.055.zip
Normal file
BIN
updates/0.00/ver_0.055.zip
Normal file
Binary file not shown.
1
updates/0.00/ver_0.055_files.txt
Normal file
1
updates/0.00/ver_0.055_files.txt
Normal file
@@ -0,0 +1 @@
|
||||
F: ../autoload/front/view/class.ShopBasket.php
|
||||
3
updates/0.00/ver_0.055_sql.txt
Normal file
3
updates/0.00/ver_0.055_sql.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
ALTER TABLE pp_shop_orders CHANGE client_street client_street VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_polish_ci NULL DEFAULT NULL;
|
||||
ALTER TABLE pp_shop_orders CHANGE client_postal_code client_postal_code VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_polish_ci NULL DEFAULT NULL;
|
||||
ALTER TABLE pp_shop_orders CHANGE client_city client_city VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_polish_ci NULL DEFAULT NULL;
|
||||
BIN
updates/0.00/ver_0.056.zip
Normal file
BIN
updates/0.00/ver_0.056.zip
Normal file
Binary file not shown.
2
updates/0.00/ver_0.056_files.txt
Normal file
2
updates/0.00/ver_0.056_files.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
D: ../libraries/filemanager-9.12.1/
|
||||
D: ../libraries/filemanager-9.14.0/
|
||||
BIN
updates/0.00/ver_0.057.zip
Normal file
BIN
updates/0.00/ver_0.057.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.058.zip
Normal file
BIN
updates/0.00/ver_0.058.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.059.zip
Normal file
BIN
updates/0.00/ver_0.059.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.060.zip
Normal file
BIN
updates/0.00/ver_0.060.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.061.zip
Normal file
BIN
updates/0.00/ver_0.061.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.062.zip
Normal file
BIN
updates/0.00/ver_0.062.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.063.zip
Normal file
BIN
updates/0.00/ver_0.063.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.064.zip
Normal file
BIN
updates/0.00/ver_0.064.zip
Normal file
Binary file not shown.
2
updates/0.00/ver_0.064_sql.txt
Normal file
2
updates/0.00/ver_0.064_sql.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE pp_articles_langs ADD table_of_contents TEXT NULL DEFAULT NULL AFTER text;
|
||||
ALTER TABLE pp_articles ADD views INT NOT NULL DEFAULT '0' AFTER social_icons;
|
||||
BIN
updates/0.00/ver_0.065.zip
Normal file
BIN
updates/0.00/ver_0.065.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.066.zip
Normal file
BIN
updates/0.00/ver_0.066.zip
Normal file
Binary file not shown.
1
updates/0.00/ver_0.066_sql.txt
Normal file
1
updates/0.00/ver_0.066_sql.txt
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE pp_articles_langs ADD meta_title VARCHAR(255) NULL DEFAULT NULL AFTER table_of_contents;
|
||||
BIN
updates/0.00/ver_0.067.zip
Normal file
BIN
updates/0.00/ver_0.067.zip
Normal file
Binary file not shown.
1
updates/0.00/ver_0.067_sql.txt
Normal file
1
updates/0.00/ver_0.067_sql.txt
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE pp_shop_products ADD COLUMN visits INT NULL DEFAULT '0' AFTER wp;
|
||||
BIN
updates/0.00/ver_0.068.zip
Normal file
BIN
updates/0.00/ver_0.068.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.069.zip
Normal file
BIN
updates/0.00/ver_0.069.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.070.zip
Normal file
BIN
updates/0.00/ver_0.070.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.071.zip
Normal file
BIN
updates/0.00/ver_0.071.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.072.zip
Normal file
BIN
updates/0.00/ver_0.072.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.073.zip
Normal file
BIN
updates/0.00/ver_0.073.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.074.zip
Normal file
BIN
updates/0.00/ver_0.074.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.075.zip
Normal file
BIN
updates/0.00/ver_0.075.zip
Normal file
Binary file not shown.
BIN
updates/0.00/ver_0.076.zip
Normal file
BIN
updates/0.00/ver_0.076.zip
Normal file
Binary file not shown.
4
updates/0.00/ver_0.076_sql.txt
Normal file
4
updates/0.00/ver_0.076_sql.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
INSERT INTO pp_langs_translations (text, pl) VALUES ('zobacz-wiecej', 'Zobacz więcej');
|
||||
INSERT INTO pp_langs_translations (text, pl) VALUES ('opis-produktu', 'Opis produktu');
|
||||
UPDATE pp_langs_translations SET pl='Złóż zamówienie bez rejestracji' WHERE text='zloz-zamowienie-bez-rejestraji';
|
||||
ALTER TABLE `pp_shop_orders` ADD `inpost_paczkomat` VARCHAR(255) NULL DEFAULT NULL AFTER `transport_description`;
|
||||
BIN
updates/0.00/ver_0.077.zip
Normal file
BIN
updates/0.00/ver_0.077.zip
Normal file
Binary file not shown.
1
updates/0.00/ver_0.077_sql.txt
Normal file
1
updates/0.00/ver_0.077_sql.txt
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE pp_shop_products ADD COLUMN google_xml_group VARCHAR(255) NULL DEFAULT NULL AFTER visits;
|
||||
BIN
updates/0.00/ver_0.078.zip
Normal file
BIN
updates/0.00/ver_0.078.zip
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user