wiki.techinc.nl/tests/phpunit/data/db/postgres/tables.sql

1 line
246 B
MySQL
Raw Normal View History

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)