Adding it (only to be removed later) is not useful and interferes with the internals of the schema builder because it masks the actual table name during the table sql building and at some stages, this actual name is required to be known Bug: T191231 Change-Id: I57cc9b83c81f5c2d0d50c7b9e0dc334e7251c74f
1 line
No EOL
231 B
SQL
1 line
No EOL
231 B
SQL
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) |