Browse Source

added support for sequence to eloquent models.

Taylor Otwell 13 years ago
parent
commit
c576c388b9
1 changed files with 15 additions and 1 deletions
  1. 15 1
      laravel/database/eloquent/model.php

+ 15 - 1
laravel/database/eloquent/model.php

@@ -13,6 +13,20 @@ abstract class Model {
 	 */
 	public static $connection;
 
+	/**
+	 * Indicates if the model has creation and update timestamps.
+	 *
+	 * @var bool
+	 */
+	public static $timestamps = false;
+
+	/**
+	 * The name of the auto-incrementing sequence associated with the model.
+	 *
+	 * @var string
+	 */
+	public static $sequence = null;
+
 	/**
 	 * The model query instance.
 	 *
@@ -362,7 +376,7 @@ abstract class Model {
 		}
 		else
 		{
-			$success = is_numeric($this->attributes['id'] = $this->query->insert_get_id($this->attributes));
+			$success = is_numeric($this->attributes['id'] = $this->query->insert_get_id($this->attributes, static::$sequence));
 		}
 
 		($this->exists = true) and $this->dirty = array();