Changeset 60789 for trunk/tests/phpunit/tests/db/dbDelta.php
- Timestamp:
- 09/21/2025 03:50:56 PM (3 months ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/db/dbDelta.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/db/dbDelta.php
r60782 r60789 1117 1117 ); 1118 1118 } 1119 1120 /** 1121 * @ticket 59481 1122 */ 1123 public function test_column_types_are_not_case_sensitive() { 1124 global $wpdb; 1125 1126 $updates = dbDelta( 1127 " 1128 CREATE TABLE {$wpdb->prefix}dbdelta_test ( 1129 id bigint(20) NOT NULL AUTO_INCREMENT, 1130 column_1 varCHAr(255) NOT NULL, 1131 column_2 TEXT, 1132 column_3 blOB, 1133 PRIMARY KEY (id), 1134 KEY key_1 (column_1($this->max_index_length)), 1135 KEY compound_key (id,column_1($this->max_index_length)), 1136 FULLTEXT KEY fulltext_key (column_1) 1137 ) {$this->db_engine} 1138 ", 1139 false 1140 ); 1141 1142 $this->assertEmpty( $updates ); 1143 } 1119 1144 }
Note: See TracChangeset
for help on using the changeset viewer.