repo/sql/postgres/wb_property_info.sql
-- This file is automatically generated using maintenance/generateSchemaSql.php.
-- Source: extensions/Wikibase/repo/sql/abstract/wb_property_info.json
-- Do not modify this file directly.
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
CREATE TABLE wb_property_info (
pi_property_id INT NOT NULL,
pi_type TEXT NOT NULL,
pi_info TEXT NOT NULL,
PRIMARY KEY(pi_property_id)
);
CREATE INDEX pi_type ON wb_property_info (pi_type);