7 lines
148 B
SQL
7 lines
148 B
SQL
CREATE TABLE `remoteUser` (
|
|
`id` integer PRIMARY KEY NOT NULL,
|
|
`name` text NOT NULL,
|
|
`domain` text,
|
|
`cachedActivity` text,
|
|
`expiry` integer
|
|
);
|