Changeset 1 of https://gerrit.wikimedia.org/r/#change,3365: 763b57f9f2af131a2d8e65f520a23c00109be0e1 got mis-merged in changeset 2:f752cf8042And introduced into master wth0a792a1dcbAlso, marking all new functions as @since 1.19 since we want to have them there later. Patchset 2: whitespace fixes Patchset 3: Fix <?php Patchset 4: rebase to current master Change-Id: Ic7d940dfec8890de20197128505962375fac4f06
6 lines
175 B
SQL
6 lines
175 B
SQL
CREATE TABLE external_user (
|
|
eu_local_id INTEGER NOT NULL PRIMARY KEY,
|
|
eu_external_id TEXT
|
|
);
|
|
|
|
CREATE UNIQUE INDEX eu_external_id ON external_user (eu_external_id);
|