Changeset 1964720
- Timestamp:
- 10/29/2018 12:58:02 AM (7 years ago)
- File:
-
- 1 edited
-
easyreservations/trunk/lib/updates/install.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easyreservations/trunk/lib/updates/install.php
r1964719 r1964720 91 91 $table_name = $wpdb->prefix . "reservationmeta"; 92 92 93 $sql .= "CREATE TABLE $table_name (93 $sql = "CREATE TABLE $table_name ( 94 94 meta_id bigint(20) unsigned NOT NULL auto_increment, 95 95 reservation_id bigint(20) unsigned NOT NULL default '0', … … 101 101 ) $charset_collate;"; 102 102 103 dbDelta($sql);103 dbDelta($sql); 104 104 105 105 $room_args = array( 'post_status' => 'publish|private', 'post_type' => 'easy-rooms', 'orderby' => 'post_title', 'order' => 'ASC', 'numberposts' => 1);
Note: See TracChangeset
for help on using the changeset viewer.