mirror of
https://github.com/webmasterskaya/joomla-oauth-server.git
synced 2024-11-23 22:34:50 +03:00
Добавил if not exists в sql установки
This commit is contained in:
parent
0f754f8c7b
commit
741825e845
@ -12,7 +12,7 @@ create table if not exists `#__webmasterskaya_oauthserver_access_tokens`
|
|||||||
unique (identifier)
|
unique (identifier)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table `#__webmasterskaya_oauthserver_authorization_codes`
|
create table if not exists `#__webmasterskaya_oauthserver_authorization_codes`
|
||||||
(
|
(
|
||||||
id int auto_increment
|
id int auto_increment
|
||||||
primary key,
|
primary key,
|
||||||
@ -26,7 +26,7 @@ create table `#__webmasterskaya_oauthserver_authorization_codes`
|
|||||||
unique (identifier)
|
unique (identifier)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table `#__webmasterskaya_oauthserver_clients`
|
create table if not exists `#__webmasterskaya_oauthserver_clients`
|
||||||
(
|
(
|
||||||
id int auto_increment
|
id int auto_increment
|
||||||
primary key,
|
primary key,
|
||||||
@ -43,7 +43,7 @@ create table `#__webmasterskaya_oauthserver_clients`
|
|||||||
unique (identifier)
|
unique (identifier)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table `#__webmasterskaya_oauthserver_refresh_tokens`
|
create table if not exists `#__webmasterskaya_oauthserver_refresh_tokens`
|
||||||
(
|
(
|
||||||
id int auto_increment
|
id int auto_increment
|
||||||
primary key,
|
primary key,
|
||||||
|
Loading…
Reference in New Issue
Block a user