generated from AMRC-FactoryPlus/acs-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7167e55
commit 929df28
Showing
11 changed files
with
721 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
/* | ||
* Factory+ / AMRC Connectivity Stack (ACS) Manager component | ||
* Copyright 2023 AMRC | ||
*/ | ||
|
||
namespace App\Http\Controllers; | ||
|
||
use Illuminate\Http\Request; | ||
|
||
class SchemaEditorController extends Controller | ||
{ | ||
public function index() | ||
{ | ||
$initialData = [ | ||
'deviceSchemas' => [ | ||
'value' => null, | ||
'method' => 'get', | ||
'url' => '/api/device-schemas', | ||
], | ||
'deviceSchemaVersions' => [ | ||
'value' => null, | ||
'method' => 'get', | ||
'url' => '/api/device-schemas/{schema}/versions', | ||
], | ||
]; | ||
|
||
// Return the view with the initial data | ||
return view('schema-editor', [ | ||
'initialData' => $initialData, | ||
]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,328 @@ | ||
/* | ||
* Factory+ / AMRC Connectivity Stack (ACS) Manager component | ||
* Copyright 2023 AMRC | ||
*/ | ||
|
||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; | ||
/*!40103 SET TIME_ZONE='+00:00' */; | ||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; | ||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; | ||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; | ||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; | ||
DROP TABLE IF EXISTS `clusters`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `clusters` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`namespace` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`has_central_agents` tinyint(1) NOT NULL DEFAULT '0', | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `device_connections`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `device_connections` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
`node_id` bigint unsigned NOT NULL, | ||
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`file` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`active` tinyint(1) NOT NULL DEFAULT '0', | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `device_schema_versions`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `device_schema_versions` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
`device_schema_id` bigint unsigned NOT NULL, | ||
`version` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `device_schemas`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `device_schemas` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `devices`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `devices` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
`node_id` bigint unsigned NOT NULL, | ||
`device_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`instance_uuid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`schema_uuid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`device_connection_id` bigint unsigned DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `edge_agent_configurations`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `edge_agent_configurations` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
`node_id` bigint unsigned NOT NULL, | ||
`file` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `failed_jobs`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `failed_jobs` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `groups`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `groups` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`cluster_id` bigint unsigned NOT NULL, | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `groups_UN` (`name`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `migrations`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `migrations` ( | ||
`id` int unsigned NOT NULL AUTO_INCREMENT, | ||
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`batch` int NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `node_user`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `node_user` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
`user_id` bigint unsigned NOT NULL, | ||
`node_id` bigint unsigned NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `nodes`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `nodes` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`created_at` datetime DEFAULT CURRENT_TIMESTAMP, | ||
`updated_at` datetime DEFAULT CURRENT_TIMESTAMP, | ||
`principal` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`node_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`is_admin` tinyint(1) NOT NULL DEFAULT '0', | ||
`is_valid` tinyint(1) NOT NULL, | ||
`expiry_date` date DEFAULT NULL, | ||
`group_id` bigint unsigned NOT NULL, | ||
`async_publish` tinyint(1) NOT NULL DEFAULT '1', | ||
`compress_payloads` tinyint(1) NOT NULL DEFAULT '0', | ||
`k8s_hostname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `nodes_principal_unique` (`principal`), | ||
UNIQUE KEY `node_group_UN` (`group_id`,`node_id`), | ||
KEY `nodes_FK_1` (`group_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `oauth_access_tokens`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `oauth_access_tokens` ( | ||
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`user_id` bigint unsigned DEFAULT NULL, | ||
`client_id` bigint unsigned NOT NULL, | ||
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`scopes` text COLLATE utf8mb4_unicode_ci, | ||
`revoked` tinyint(1) NOT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
`expires_at` datetime DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
KEY `oauth_access_tokens_user_id_index` (`user_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `oauth_auth_codes`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `oauth_auth_codes` ( | ||
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`user_id` bigint unsigned NOT NULL, | ||
`client_id` bigint unsigned NOT NULL, | ||
`scopes` text COLLATE utf8mb4_unicode_ci, | ||
`revoked` tinyint(1) NOT NULL, | ||
`expires_at` datetime DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
KEY `oauth_auth_codes_user_id_index` (`user_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `oauth_clients`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `oauth_clients` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`user_id` bigint unsigned DEFAULT NULL, | ||
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`secret` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`provider` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`personal_access_client` tinyint(1) NOT NULL, | ||
`password_client` tinyint(1) NOT NULL, | ||
`revoked` tinyint(1) NOT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
KEY `oauth_clients_user_id_index` (`user_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `oauth_personal_access_clients`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `oauth_personal_access_clients` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`client_id` bigint unsigned NOT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `oauth_refresh_tokens`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `oauth_refresh_tokens` ( | ||
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`revoked` tinyint(1) NOT NULL, | ||
`expires_at` datetime DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `origin_maps`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `origin_maps` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
`device_id` bigint unsigned NOT NULL, | ||
`device_schema_version_id` bigint unsigned NOT NULL, | ||
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`file` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`metrics` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`active` tinyint(1) NOT NULL DEFAULT '0', | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `personal_access_tokens`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `personal_access_tokens` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`tokenable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`tokenable_id` bigint unsigned NOT NULL, | ||
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`abilities` text COLLATE utf8mb4_unicode_ci, | ||
`last_used_at` timestamp NULL DEFAULT NULL, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `personal_access_tokens_token_unique` (`token`), | ||
KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `schemas`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `schemas` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
`schema_type_id` bigint unsigned NOT NULL, | ||
`version` text COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`file` text COLLATE utf8mb4_unicode_ci NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `sessions`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `sessions` ( | ||
`id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`user_id` bigint unsigned DEFAULT NULL, | ||
`ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`user_agent` text COLLATE utf8mb4_unicode_ci, | ||
`payload` text COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`last_activity` int NOT NULL, | ||
PRIMARY KEY (`id`), | ||
KEY `sessions_user_id_index` (`user_id`), | ||
KEY `sessions_last_activity_index` (`last_activity`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `tests`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `tests` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
DROP TABLE IF EXISTS `users`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!50503 SET character_set_client = utf8mb4 */; | ||
CREATE TABLE `users` ( | ||
`id` bigint unsigned NOT NULL AUTO_INCREMENT, | ||
`created_at` timestamp NULL DEFAULT NULL, | ||
`updated_at` timestamp NULL DEFAULT NULL, | ||
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`administrator` tinyint(1) NOT NULL DEFAULT '0', | ||
`preferences` text COLLATE utf8mb4_unicode_ci, | ||
`metadata` text COLLATE utf8mb4_unicode_ci, | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `users_username_unique` (`username`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; | ||
|
||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; | ||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; | ||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; | ||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.