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

0
Completed

How to connect my project to vertabelo database?

Huyền Huỳnh 9 years ago updated by Jan Grzegorek 9 years ago 2
Please help me!
0
Fixed

Canvas is not redrawing on bottom and side right

Hans Rattink 9 years ago updated by anonymous 9 years ago 5
When panning or zooming, the bottom of the canvas gets all messy, about the height of the little pan-box. This one also can't be minimized, allthough the arrow is still there. This is happening since this noon. Restarting the browser doesn't help
0
Completed

Define a computed column

Kindler Chase 9 years ago updated by anonymous 9 years ago 1
Is there a way to create a computed column, specifically for SQL Server? ex:

create table Entries
(
    Id int identity (1,1) not null,
    Process varchar(50) not null,
    ProcessDate datetime not null,
    Date as convert(date, ProcessDate),
    Time as convert(time, ProcessDate)
)

The last 2 columns are computed and I'd like to be able to define them with Vertabelo. Is that possible? If not, I'd like to suggest it as a feature.
Answer
anonymous 9 years ago
Well, you can define do this, but not straight. In "Table properties" you have a section called "Additional SQL scripts." You can add "After create table" statement like this:
ALTER TABLE Entries 
DROP COLUMN Date;

ALTER TABLE Entries
ADD Date AS convert(date, ProcessDate);

This way you'll have both visual representation on the diagram and the proper behavior (a computed column).
I know it's a kind of workaround but adding tons of options like this to our UI would make Vertabelo unusable.
0
Answered

Can not see model

Hans Rattink 9 years ago updated by anonymous 9 years ago 3
A user from my organisation has created a model (after accepting my invitation on vertabello) but i can't see it. When i click on the user (Koen), i can see he created it but then i still can't open it. How can i see the model?
Answer
anonymous 9 years ago
The model must be shared with you by its owner (the user who created the model). This way the owner has control over who is an editor or just a viewer of the model.

I've looked at your case and it looks like you've already figured it out yourself. If you have any other questions or ideas, feel free to contact us.
0
Not a bug

Reference tool erroneously creates a self-relationship

Buz Carter 9 years ago updated by Agnieszka Kozubek-Krycuń (Chief Scientist) 9 years ago 2
I have two existing tables, I click the "Add New Reference" tool and click the first (parent) table -- immediately a self-referencing relationship is created on that table ("pig's ear" or "fish hook" relationship). Cannot create relationships between tables.

This bug just appeared. Had been working fine. Chrome, Mac, db is SQL Server. 
0
Answered

shared model not showing up

Ira Hofer 9 years ago updated by Agnieszka Kozubek-Krycuń (Chief Scientist) 9 years ago 2
A model was shared with me and I got a notification but it is not showing up in my dashboard. How do I access it?
0
Under review

Move the Column Delete button

Tommy Trucks 9 years ago updated by anonymous 9 years ago 1
The Column Delete button is in the wrong place... right next to the Column Details button.
I find to often that I accidentally click the delete button instead of the details button.

Please move to a better location or add a confirm delete action.
0

Object level locking for collaboration

Mohit Rao 9 years ago updated by anonymous 9 years ago 1
Is there plan to let more than one person work on a model at the same time via object level locking instead of model locking?
0
Fixed

Moving entire selection does not move lines between tables

Marc Belley 9 years ago updated by anonymous 9 years ago 3
If you select all (either Ctrl-A or drag-selecting everything) and try to move the tables, some lines between tables stay where they are and need to be manually moved to follow the tables.

Image 31
Answer
anonymous 9 years ago
This issue has been fixed and deployed on production.
0
Fixed

Postgresql script ignores schema when generating index

Raymond Roelands 9 years ago updated by anonymous 9 years ago 3
When generating tables and indexes the schema of the index is not generated.

Example:
CREATE TABLE myschema.mytable ( id bigserial NOT NULL, name char(64) NULL, CONSTRAINT  );
CREATE INDEX ix_mytable_01 on mytable (name ASC);  ### schema is missing here

Answer
anonymous 9 years ago
The issue has been fixed and deployed on production.