Your feedback is highly appreciated! Let's make Vertabelo even better.

+1

do you have a discounted price or coupon for startup companies?

Brad Wright 7 years ago updated by xiasiliang 2 years ago 0

Early startup entering funding acquisition phase.  Not much money on hand but would like to use your tool to demonstrate concepts to potential investors.  Extended trial period of a month or two, or some other kind of significant discount would be helpful.

0
Completed

SubModel

Graham Twaddle 2 years ago updated by Rafał Strzaliński (Senior Engineer) 2 years ago 1

For larger projects the ability to have subModels is important, a subset of entities to work on at any one time , ideally entities may be in one or more subModels 

0
Fixed

Upload SQL doesn´t working

Jesus Soler 2 years ago updated by Rafał Strzaliński (Senior Engineer) 2 years ago 1

Upload PostgreSQL SQL doesn´t working.

0

Please support standard Undo + Redo Keyboard Shortcuts

s rapport 2 years ago 0

Please support standard Undo + Redo Keyboard Shortcuts. CMD+Y is very odd, not intuitive, and causes mistakes thinking a redo was applied when it is not. It's easy to lose work due to this non-standard CMD+Y shortcut.

STANDARD

CMD+Z = Undo (works)

CMD+SHIFT+Z = Redo (does not work)

0
Not a bug

Migration does not include changes to types

s rapport 2 years ago updated 2 years ago 1

In Additional SQL Scripts, I've made changes to add new types used in the model. However, generating a migration does not include these changes and requires manual analysis to modify the migration script.


How can a migration be generated that includes changes to types?

CREATE TYPE billing_interval AS ENUM (
'once',
'monthly',
'yearly'
);

0
Fixed

Need to remove users in order to buy a plan

Jason Kolb 5 years ago updated by Jarosław Błąd (CEO) 2 years ago 5

I am trying to renew my account, which lapsed, but it will not allow me to remove users or select a smaller plan. I am on the only one at our company who wants to use Vertabelo, so I don't need the old plan. I hope to change that down the road, but I need to be able to use it myself first. Can you help me remove those users or purchase a smaller plan somehow?

0
Answered

Does the tool support clickhouse ?

Ayham 2 years ago updated by Rafał Strzaliński (Senior Engineer) 2 years ago 1

I have Big Data infra with a clickhouse attached and wanted to know if the tool supports that ?

+1
Fixed

Delete folder

Itzel Delgado Villanueva 6 years ago updated by Jarosław Błąd (CEO) 2 years ago 5

I want to start by saying that the system is excellent, I just found a bug and I'm glad to tell you about it, so I contribute to its better functioning ...

Bug: When I try to delete a folder it is throwing me a javascript error ...

Answer

Hello,

Do you have any extensions enabled? I have no evidence of the error in system logs.

Best regards,
Adam Mościcki

0
Under review

[Postgres] Migration Script Error - SET DEFAULT now()

Fernando Santos 2 years ago updated by Jarosław Błąd (CEO) 2 years ago 1

Hi there!

I generated a migration SQL script for Postgres physical data Model, but it didn't work properly.


One of the changes was setting a default for a timestamp column, using now() function as the default value.

The ALTER TABLE command generated by the migration feature was:


-- Column: created_at.
ALTER TABLE rq_forms
ALTER created_at SET DEFAULT 'now()';


However, it creates the default with a fixed timestamp, the date and time of the ALTER TABLE execution.

The expected behavior was setting now() function as the default, not the fixed date and time.

This is the correct script the migration feature should generate: 

-- Column: created_at.
ALTER TABLE rq_forms
ALTER created_at SET DEFAULT now(); --> Without the single quotes.

Just to mention, the CREATE TABLE is working fine, setting the now() function properly when I generate the SQL Script for the same table in the model as seen below. Just ALTER TABLE generated by the migration has the bug.

-- Its OK!

CREATE TABLE rq_forms (
id serial NOT NULL,
created_at timestamp NOT NULL DEFAULT now(),
updated_at timestamp NULL,

(...)


One more request:

Vertabelo could have the type "timestamp with time zone" in the Type windows predefined options (in the Date and time section).

The "timestamp" option creates a "timestamp without time zone" column.

It would be nice to have the option to choose between with or without time zone in Vertabelo.

I hope I could help improving Vertabelo.


Regards,


Fernando dos Santos.

+20
Completed

Dark theme

Ivan Rave 10 years ago updated by Jarosław Błąd (CEO) 2 years ago 6
It would be nice to work with diagram using dark theme. I suppose many developers use dark-theme editors. and it's hard for eyes to switch to light themes.