wiki.techinc.nl/tests/phpunit/data/db/postgres/tables.sql
Ammarpad e497482ee4 DoctrineSchemaBuilder: Do not add prefix placeholder for Postgres at all
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
2021-04-06 00:23:14 +00:00

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)