Skip to content
#

database-schema

Here are 348 public repositories matching this topic...

database-lab-engine
anatolystansler
anatolystansler commented Mar 22, 2022

Hi! We are working on improving access control for the Database Lab Engine.

The primary focus is LDAP, Active Directory, SSO support for clones and UI/CLI connections, granular control over user permissions.

See more details and comments on GitLab issue #315.

Your contributions are very welcome to support our open-source prod

good first issue help wanted
marccampbell
marccampbell commented Jan 6, 2022

When running kubectl schemahero install --yaml the Statefulset for the manager includes an "availableReplicas" field. This should not be present b/c it's not installable with it.

bug good first issue
karatakis
karatakis commented Apr 27, 2022

Description

I want to generate a relationship graph from an sqlite database using the following code

use std::collections::HashMap;
use sea_schema::sqlite::Schema;

let schema: Schema = ...;

let tables_relations_hash_map: HashMap<String, Vec<String>> = schema
    .tables
    .iter()
    .fold(HashMap::new(), |mut acc, table| {
        if !acc.contains_key(&table.name) {
good first issue

Improve this page

Add a description, image, and links to the database-schema topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the database-schema topic, visit your repo's landing page and select "manage topics."

Learn more