SQL

CREATE TABLE `issue_index`  (
  `group_id` INTEGER PRIMARY KEY NOT NULL,
  `max_index` INTEGER NULL
)

+ Add column

Columns

Column Data type Allow null Primary key Actions
group_id INTEGER Rename | Drop
max_index INTEGER Rename | Drop

+ Add index

Indexes

Name Columns Unique SQL Drop?
IDX_issue_index_max_index max_index SQL
CREATE INDEX `IDX_issue_index_max_index`
ON `issue_index` (`max_index`)
Drop