Hello,
I created a tool that automatically creates the database queries based on simple text, for example:
cars:id,name
car_colors:id,name,car_id
Would automatically create the sql needed for those tables, with the correct field type (int,text,varchar,primary key,auto increment,etc).
Wanted to see how useful you might find something like this,
I have it here and did it a while back, thinking of improving on it, as I find it saves some time specially when you need to create databases often:
I created a tool that automatically creates the database queries based on simple text, for example:
cars:id,name
car_colors:id,name,car_id
Would automatically create the sql needed for those tables, with the correct field type (int,text,varchar,primary key,auto increment,etc).
Wanted to see how useful you might find something like this,
I have it here and did it a while back, thinking of improving on it, as I find it saves some time specially when you need to create databases often:
GitHub - roynaufal/Text_to_SQL: Create MySQL from plain text
Create MySQL from plain text. Contribute to roynaufal/Text_to_SQL development by creating an account on GitHub.
github.com