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

0
Fast

Canvas is not redrawing on bottom and side right

Hans Rattink 10 år siden opdateret af anonymous 10 år siden 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
Færdig

Define a computed column

Kindler Chase 10 år siden opdateret af anonymous 10 år siden 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.
Svar
anonymous 10 år siden
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
Besvaret

Can not see model

Hans Rattink 10 år siden opdateret af anonymous 10 år siden 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?
Svar
anonymous 10 år siden
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
Ikke en bug

Reference tool erroneously creates a self-relationship

Buz Carter 10 år siden opdateret af Agnieszka Kozubek-Krycuń (Chief Scientist) 10 år siden 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
Besvaret

shared model not showing up

Ira Hofer 10 år siden opdateret af Agnieszka Kozubek-Krycuń (Chief Scientist) 10 år siden 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?
+1
Under vurdering

Move the Column Delete button

Tommy Trucks 10 år siden opdateret af anonymous 10 år siden 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 10 år siden opdateret af anonymous 10 år siden 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
Fast

Moving entire selection does not move lines between tables

Marc Belley 11 år siden opdateret af anonymous 10 år siden 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
Svar
anonymous 10 år siden
This issue has been fixed and deployed on production.
0
Fast

Postgresql script ignores schema when generating index

Raymond Roelands 10 år siden opdateret af anonymous 10 år siden 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

Svar
anonymous 10 år siden
The issue has been fixed and deployed on production.
0
Afvist

Column Defaults

Raymond Gigliotti 10 år siden opdateret 10 år siden 2
Have configuration options to set default values for new columns.

- Default data type and length
- Not Null/Nullable
- Default column name pattern

ie with table name users:
%TABLE_NAME%_id         - users_id
%SINGULAR_TABLE_NAME%_id     - user_id

This only applies to new columns created with the add column button and not foreign key columns.





Kundesupport af UserEcho