fix foreign key example

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@7112 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
lissav 2010-08-17 16:30:56 +00:00
parent d2e7821be3
commit 79b21e0b73

View File

@ -50,7 +50,7 @@ package xCAT_schema::Sample;
x_llnode => {
cols => [qw(node jobid jobstatus cpu_usage comments disable)],
keys => [qw(node)],
foreignkeys => [qw(node) REFERENCES x_lljob(node) ON DELETE CASCADE)],
foreignkeys => [qw((node) REFERENCES x_lljob(node) ON DELETE CASCADE)],
required => [qw(node jobid)],
types => {
jobid => 'INTEGER',