0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Redmine】チケットIDの変更

Last updated at Posted at 2019-02-13

チケットIDを変更する


mysql> select auto_increment from information_schema.tables where table_name = 'issues';
+----------------+
| auto_increment |
+----------------+
|            540 |
+----------------+
1 row in set (0.00 sec)

mysql>
mysql>
mysql>
mysql> alter table db_redmine.issues auto_increment = 600;
Query OK, 0 rows affected (0.09 sec)
Records: 0  Duplicates: 0  Warnings: 0

mysql>
mysql> select auto_increment from information_schema.tables where table_name = 'issues';
+----------------+
| auto_increment |
+----------------+
|            600 |
+----------------+
1 row in set (0.00 sec)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?