summaryrefslogtreecommitdiff
path: root/app/Model/ColumnModel.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Model/ColumnModel.php')
-rw-r--r--app/Model/ColumnModel.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/Model/ColumnModel.php b/app/Model/ColumnModel.php
index 1adac0f2..795fe692 100644
--- a/app/Model/ColumnModel.php
+++ b/app/Model/ColumnModel.php
@@ -32,6 +32,18 @@ class ColumnModel extends Base
}
/**
+ * Get projectId by the columnId
+ *
+ * @access public
+ * @param integer $column_id Column id
+ * @return integer
+ */
+ public function getProjectId($column_id)
+ {
+ return $this->db->table(self::TABLE)->eq('id', $column_id)->findOneColumn('project_id');
+ }
+
+ /**
* Get the first column id for a given project
*
* @access public