added missing table: location_namespace
This commit is contained in:
parent
21757186e9
commit
b139be6caf
@ -39,6 +39,16 @@ create table profile_role (
|
||||
|
||||
);
|
||||
|
||||
create table location_namespace (
|
||||
|
||||
id integer /*comment 'identity for this namespace'*/,
|
||||
description text /* comment 'description of the namespace'*/ ,
|
||||
created integer not null /*comment 'date the record was created*/ ,
|
||||
/* modified timestamp comment 'date this record was modified',*/
|
||||
primary key (id)
|
||||
|
||||
);
|
||||
|
||||
create table login_token (
|
||||
user_id integer not null /* comment 'user owning this token'*/ references "user" (id),
|
||||
token char(32) not null /* comment 'token useable for logging in'*/,
|
||||
|
@ -572,6 +572,16 @@ create table profile_role (
|
||||
|
||||
);
|
||||
|
||||
create table location_namespace (
|
||||
|
||||
id integer /*comment 'identity for this namespace'*/,
|
||||
description text /* comment 'description of the namespace'*/ ,
|
||||
created integer not null /*comment 'date the record was created*/ ,
|
||||
/* modified timestamp comment 'date this record was modified',*/
|
||||
primary key (id)
|
||||
|
||||
);
|
||||
|
||||
create table login_token (
|
||||
user_id integer not null /* comment 'user owning this token'*/ references "user" (id),
|
||||
token char(32) not null /* comment 'token useable for logging in'*/,
|
||||
|
Loading…
Reference in New Issue
Block a user