diff options
author | Prashant P. Shah | 2011-07-15 14:58:43 +0530 |
---|---|---|
committer | Prashant P. Shah | 2011-07-15 14:58:43 +0530 |
commit | 9d23b552b50a6f14ab29765220d5508e503f4431 (patch) | |
tree | cc75f4f739a762ef97f4b85d0303ed61f4fa7621 /lab_migration.install | |
parent | b64210e62829e2e826cae2bf87696a216ff041dc (diff) | |
download | scilab_lab_migration-9d23b552b50a6f14ab29765220d5508e503f4431.tar.gz scilab_lab_migration-9d23b552b50a6f14ab29765220d5508e503f4431.tar.bz2 scilab_lab_migration-9d23b552b50a6f14ab29765220d5508e503f4431.zip |
Upload solution
Signed-off-by: Prashant P. Shah <pshah.mumbai@gmail.com>
Diffstat (limited to 'lab_migration.install')
-rw-r--r-- | lab_migration.install | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lab_migration.install b/lab_migration.install index 8530b7a..8573b97 100644 --- a/lab_migration.install +++ b/lab_migration.install @@ -54,6 +54,11 @@ function lab_migration_schema() 'type' => 'int', 'not null' => TRUE, ), + 'solver_uid' => array( + 'description' => t('TODO: please describe this field!'), + 'type' => 'int', + 'not null' => TRUE, + ), 'name_title' => array( 'description' => t('TODO: please describe this field!'), 'type' => 'varchar', @@ -99,6 +104,13 @@ function lab_migration_schema() 'approval_status' => array( 'description' => t('TODO: please describe this field!'), 'type' => 'int', + 'length' => '1', + 'not null' => TRUE, + ), + 'solution_status' => array( + 'description' => t('TODO: please describe this field!'), + 'type' => 'int', + 'length' => '1', 'not null' => TRUE, ), 'creation_date' => array( @@ -111,6 +123,11 @@ function lab_migration_schema() 'type' => 'int', 'not null' => TRUE, ), + 'solution_date' => array( + 'description' => t('TODO: please describe this field!'), + 'type' => 'int', + 'not null' => TRUE, + ), 'message' => array( 'description' => t('TODO: please describe this field!'), 'type' => 'text', |