Localisation updates from https://translatewiki.net.
[mediawiki.git] / tests / phpunit / data / db / postgres / tables.sql
blob54b6d0b8ae1e83c3582254b352ae23a2d3481a04
1 CREATE TABLE actor (actor_id BIGINT NOT NULL, actor_user INT NOT NULL, actor_name VARCHAR(255) NOT NULL, PRIMARY KEY(actor_id))CREATE UNIQUE INDEX actor_user ON actor (actor_user)CREATE UNIQUE INDEX actor_name ON actor (actor_name)