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

+1
Solucionado

How do i move a model into my team account ?

Ed Croft hace 10 años actualizado por anonymous hace 10 años 7
I have bought a team subscription... but your system won't let me move my models ? How do I move them into team account ?
0
Solucionado

Typo in bonus-page

Valentin Mocanu hace 10 años actualizado por anonymous hace 10 años 1
On http://www.vertabelo.com/bonus-points there's a typo at the end: "For new and valueble feature request..."
Respuesta
anonymous hace 10 años
Fixed. Thanks for letting us know about this.
0
Respuestas

How to change the text size

Mengzhou Fang hace 10 años actualizado por Agnieszka Kozubek-Krycuń (Chief Scientist) hace 10 años 1
When I export an PDF, my printout looks so tiny. I need to make the text size larger. But I can't
0
No es un bug

SQL Server Model with column name of Order adds quotes

Kindler Chase hace 10 años actualizado por Rafał Strzaliński (Senior Engineer) hace 10 años 6
When adding a table for SQL Server and with a column name of Order, the generated SQL incorrectly adds quotes around the column name:

-- tables-- Table: OrderTest
CREATE TABLE OrderTest (
 "Order" int NOT NULL,
 Value varchar(250) NOT NULL
)
;

The generated SQL should be using brackets:

-- tables-- Table: OrderTest
CREATE TABLE OrderTest (
[Order] int NOT NULL,
 Value varchar(250) NOT NULL
)
;

I haven't tried other key words; if you fix this, I'd suggest testing other key words as well.

Thanks!
0
Solucionado

Allow .media and other new top level domains in email address validation

sam Prin hace 10 años actualizado por Rafał Strzaliński (Senior Engineer) hace 10 años 3
I was not able ot use my work email address sam@seed.media to sign up
0
Solucionado

Prepaid Code Purchase Destination

Kevin Huber hace 10 años actualizado por Rafał Strzaliński (Senior Engineer) hace 10 años 7
When I am on the pricing page and click the premium account pay per day link, it just takes me to one of my model's page. I want to pay money but can't!
0
Denegado

Interclassement

Étienne Dubois hace 10 años actualizado por Jarosław Błąd (CEO) hace 10 años 2
How can I change the Interclassement...? By default he is to latin1_swedish_ci.. I want it to utf8
+5
No es un bug

Email confirmation cannot be sent

Harun Rizal hace 10 años actualizado por Jarosław Błąd (CEO) hace 10 años 6
I tried to send forgot password request it was sent, and trying to login it said my account is inactive but the email did not sent to my inbox, even not in spam. And there is no button to resend confirmation mail.
Please help
0
Solucionado

Identity on non-valid column doesn't generate error

Marc Belley hace 10 años actualizado por Jarosław Błąd (CEO) hace 10 años 3
Aafter changing a primary key with an identity from an int to a varchar, I noticed there's no check to see if an identity is valid. This should probably popup as an Error.

Image 51
0
Solucionado

Invalid SQL generated for comments in a schema

Corey Butler hace 10 años actualizado por Jarosław Błąd (CEO) hace 10 años 5
Comment generation partially works, but it fails to account for a schema in PostgreSQL code generation.

I've added comments to my tables and columns. The table has a schema specified. However the generated script does not reference the schema. For example:

This is the code that's generated:

COMMENT ON TABLE "employee" IS 'Represents an employee.';

This is the code that SHOULD be generated:

COMMENT ON TABLE "schema"."employee" IS 'Represents an employee.';