* 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
1 line
269 B
SQL
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)
|