Dear All,
I have created a project and in this project I have a list of over 500 file versions that I need to input. It will be very tedious to do so manually. Is there anyway that I can import this from a text/csv/xml file?
Thanks
Anil
JIRA Command Line Interface has addVersion and you can combine that with runFromCsv or one of the other run actions.
Thanks a lot. The command line Interface worked perfectly.
Would it be possible to add options to a Custom Multi Select field using the same. If so what is the commnad.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, I need the same for version and components. There is a API that conected with another app?Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Anil,
the only way to update these versions is to develop an own plugin or use an own db script.
Usually, I don't suggest to operate on DB but, in this case, versions are stored just in one table.
Table name is projectversion and it is related to specific project through PROJECT field that contains the project id.
+-------------+---------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+---------------+------+-----+---------+-------+
| ID | decimal(18,0) | NO | PRI | NULL | |
| PROJECT | decimal(18,0) | YES | | NULL | |
| vname | varchar(255) | YES | | NULL | |
| DESCRIPTION | text | YES | | NULL | |
| SEQUENCE | decimal(18,0) | YES | | NULL | |
| RELEASED | varchar(10) | YES | | NULL | | - true/false
| ARCHIVED | varchar(10) | YES | | NULL | | - true/false
| URL | varchar(255) | YES | | NULL | |
| STARTDATE | datetime | YES | | NULL | |
| RELEASEDATE | datetime | YES | | NULL | |
+-------------+---------------+------+-----+---------+-------+
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Fabio, I did not test this out. The Command Line interface worked for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.