mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
8 lines
246 B
MySQL
8 lines
246 B
MySQL
|
CREATE TABLE phabricator_repository.repository_shortcut (
|
||
|
id int unsigned not null auto_increment primary key,
|
||
|
name varchar(255) not null,
|
||
|
href varchar(255) not null,
|
||
|
description varchar(255) not null,
|
||
|
sequence int unsigned not null
|
||
|
);
|