INSERT: is_default=1
This commit is contained in:
parent
67b58bf4ba
commit
553067e5e2
|
@ -79,12 +79,14 @@ for v in $CHILI_ID_GITORIOUS_REPO; do
|
||||||
url,
|
url,
|
||||||
root_url,
|
root_url,
|
||||||
type,
|
type,
|
||||||
path_encoding)
|
path_encoding,
|
||||||
|
is_default)
|
||||||
VALUES('$chili_project_id',
|
VALUES('$chili_project_id',
|
||||||
'$gitorious_path',
|
'$gitorious_path',
|
||||||
'$gitorious_path',
|
'$gitorious_path',
|
||||||
'Repository::Git',
|
'Repository::Git',
|
||||||
'')"
|
'',
|
||||||
|
1)"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
@ -110,10 +110,12 @@ for i in `seq 0 $((nrepos-1))`; do
|
||||||
url,
|
url,
|
||||||
root_url,
|
root_url,
|
||||||
type,
|
type,
|
||||||
path_encoding)
|
path_encoding,
|
||||||
|
is_default)
|
||||||
VALUES('$PROJECTID',
|
VALUES('$PROJECTID',
|
||||||
'${repos_paths[$i]}',
|
'${repos_paths[$i]}',
|
||||||
'${repos_paths[$i]}',
|
'${repos_paths[$i]}',
|
||||||
'${repos_types[$i]}',
|
'${repos_types[$i]}',
|
||||||
'')"
|
'',
|
||||||
|
1)"
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue