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

2 lines
269 B
MySQL
Raw Normal View History

CREATE TABLE /*_*/actor (actor_id BIGINT UNSIGNED NOT NULL, actor_user INTEGER UNSIGNED 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)