wiki.techinc.nl/tests/phpunit/data/db/sqlite/tables.sql
Ammar Abdulhamid d095b56e25 Expand DoctrineSchemaBuilderTest
* Test the generated table for each platform
* Use the handy dirname() function instead of full raw string path

Bug: T191231
Depends-On: If344395615087c360597a5b3d66ea03e930b7d9b
Change-Id: I936c5d10924a46743c7f76df8526105eec7ff48d
2020-10-17 21:17:46 +00:00

1 line
269 B
SQL

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)