Advertisement
lorro

WooCommerce - Create tax_rate_locations table

Jun 24th, 2015
4,485
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.22 KB | None | 0 0
  1. CREATE TABLE wp_woocommerce_tax_rate_locations (
  2. location_id bigint(20) NOT NULL,
  3. location_code varchar(255) NOT NULL,
  4. tax_rate_id bigint(20) NOT NULL,
  5. location_type varchar(40) NOT NULL
  6. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement