Changeset 2740437
- Timestamp:
- 06/10/2022 12:11:23 PM (4 years ago)
- Location:
- wc-spod/trunk
- Files:
-
- 3 edited
-
classes/SpodPodActivator.php (modified) (3 diffs)
-
classes/SpodPodUpdater.php (modified) (1 diff)
-
wc-spod.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wc-spod/trunk/classes/SpodPodActivator.php
r2708945 r2740437 36 36 status int(11) NOT NULL, 37 37 attachment_id int(11), 38 created_at DATETIMENOT NULL DEFAULT CURRENT_TIMESTAMP,38 created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, 39 39 PRIMARY KEY (id) 40 ) $charset_collate;"; 41 40 )"; 42 41 43 42 $sql2 = "CREATE TABLE $table_import_products ( … … 49 48 images_data text, 50 49 status int(11) NOT NULL, 51 created_at DATETIMENOT NULL DEFAULT CURRENT_TIMESTAMP,50 created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, 52 51 PRIMARY KEY (id) 53 ) $charset_collate;";52 )"; 54 53 55 54 $sql3 = "CREATE TABLE $table_import_log ( … … 57 56 title varchar(255) NOT NULL, 58 57 description text, 59 created_at DATETIMENOT NULL DEFAULT CURRENT_TIMESTAMP,58 created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, 60 59 PRIMARY KEY (id) 61 ) $charset_collate;";60 )"; 62 61 63 62 require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); -
wc-spod/trunk/classes/SpodPodUpdater.php
r2708945 r2740437 24 24 title varchar(255) NOT NULL, 25 25 description text, 26 created_at DATETIMENOT NULL DEFAULT CURRENT_TIMESTAMP,26 created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, 27 27 PRIMARY KEY (id) 28 ) $charset_collate;";28 )"; 29 29 30 30 require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); -
wc-spod/trunk/wc-spod.php
r2708945 r2740437 29 29 * Currently plugin version. 30 30 */ 31 define( 'SPOD_POD_VERSION', '1.2. 0' );31 define( 'SPOD_POD_VERSION', '1.2.1' ); 32 32 define( 'MIN_WORDPRESS_VERSION_REQUIRED', 4.8 ); 33 33 define( 'MIN_WOOCOMMERCE_VERSION_REQUIRED', 4.7);
Note: See TracChangeset
for help on using the changeset viewer.