Skip to content

Tabular formatting #124

Description

@gabssnake

Hello, thank you for your work on this projet!

Is there any interest in supporting tabular formatting?

For example, like this:

CREATE TABLE inspection (
    antispam        BOOLEAN NOT NULL DEFAULT FALSE,
    antivirus       BOOLEAN NOT NULL DEFAULT FALSE,
    config          VARCHAR NOT NULL DEFAULT '',
    ftp_filtering   BOOLEAN NOT NULL DEFAULT FALSE,
    mail_filtering  VARCHAR NOT NULL DEFAULT 'off',
    proxy_cache     BOOLEAN NOT NULL DEFAULT FALSE,
    sandboxing      BOOLEAN NOT NULL DEFAULT FALSE,
    ssl_filtering   VARCHAR NOT NULL DEFAULT 'off',
    url_filtering   VARCHAR NOT NULL DEFAULT 'off'
);

Instead of this:

CREATE TABLE inspection (
    antispam BOOLEAN NOT NULL DEFAULT FALSE,
    antivirus BOOLEAN NOT NULL DEFAULT FALSE,
    config VARCHAR NOT NULL DEFAULT '',
    ftp_filtering BOOLEAN NOT NULL DEFAULT FALSE,
    mail_filtering VARCHAR NOT NULL DEFAULT 'off',
    proxy_cache BOOLEAN NOT NULL DEFAULT FALSE,
    sandboxing BOOLEAN NOT NULL DEFAULT FALSE,
    ssl_filtering VARCHAR NOT NULL DEFAULT 'off',
    url_filtering VARCHAR NOT NULL DEFAULT 'off'
);

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions