123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- <?php namespace Laravel\Database\Schema;
- use Laravel\Fluent;
- class Table {
- /**
- * The database table name.
- *
- * @var string
- */
- public $name;
- /**
- * The database connection that should be used.
- *
- * @var string
- */
- public $connection;
- /**
- * The engine that should be used for the table.
- *
- * @var string
- */
- public $engine;
- /**
- * The columns that should be added to the table.
- *
- * @var array
- */
- public $columns = array();
- /**
- * The commands that should be executed on the table.
- *
- * @var array
- */
- public $commands = array();
- /**
- * Create a new schema table instance.
- *
- * @param string $name
- * @return void
- */
- public function __construct($name)
- {
- $this->name = $name;
- }
- /**
- * Indicate that the table should be created.
- *
- * @return Fluent
- */
- public function create()
- {
- return $this->command(__FUNCTION__);
- }
- /**
- * Create a new primary key on the table.
- *
- * @param string|array $columns
- * @param string $name
- * @return Fluent
- */
- public function primary($columns, $name = null)
- {
- return $this->key(__FUNCTION__, $columns, $name);
- }
- /**
- * Create a new unique index on the table.
- *
- * @param string|array $columns
- * @param string $name
- * @return Fluent
- */
- public function unique($columns, $name = null)
- {
- return $this->key(__FUNCTION__, $columns, $name);
- }
- /**
- * Create a new full-text index on the table.
- *
- * @param string|array $columns
- * @param string $name
- * @return Fluent
- */
- public function fulltext($columns, $name = null)
- {
- return $this->key(__FUNCTION__, $columns, $name);
- }
- /**
- * Create a new index on the table.
- *
- * @param string|array $columns
- * @param string $name
- * @return Fluent
- */
- public function index($columns, $name = null)
- {
- return $this->key(__FUNCTION__, $columns, $name);
- }
- /**
- * Add a foreign key constraint to the table.
- *
- * @param string|array $columns
- * @param string $name
- */
- public function foreign($columns, $name = null)
- {
- return $this->key(__FUNCTION__, $columns, $name);
- }
- /**
- * Create a command for creating any index.
- *
- * @param string $type
- * @param string|array $columns
- * @param string $name
- * @return Fluent
- */
- public function key($type, $columns, $name)
- {
- $columns = (array) $columns;
- // If no index name was specified, we will concatenate the columns and
- // append the index type to the name to generate a unique name for
- // the index that can be used when dropping indexes.
- if (is_null($name))
- {
- $name = str_replace(array('-', '.'), '_', $this->name);
- $name = $name.'_'.implode('_', $columns).'_'.$type;
- }
- return $this->command($type, compact('name', 'columns'));
- }
- /**
- * Drop the database table.
- *
- * @return Fluent
- */
- public function drop()
- {
- return $this->command(__FUNCTION__);
- }
- /**
- * Drop a column from the table.
- *
- * @param string|array $columns
- * @return void
- */
- public function drop_column($columns)
- {
- return $this->command(__FUNCTION__, array('columns' => (array) $columns));
- }
- /**
- * Drop a primary key from the table.
- *
- * @param string $name
- * @return void
- */
- public function drop_primary($name = null)
- {
- return $this->drop_key(__FUNCTION__, $name);
- }
- /**
- * Drop a unique index from the table.
- *
- * @param string $name
- * @return void
- */
- public function drop_unique($name)
- {
- return $this->drop_key(__FUNCTION__, $name);
- }
- /**
- * Drop a full-text index from the table.
- *
- * @param string $name
- * @return void
- */
- public function drop_fulltext($name)
- {
- return $this->drop_key(__FUNCTION__, $name);
- }
- /**
- * Drop an index from the table.
- *
- * @param string $name
- * @return void
- */
- public function drop_index($name)
- {
- return $this->drop_key(__FUNCTION__, $name);
- }
- /**
- * Drop a foreign key constraint from the table.
- *
- * @param string $name
- * @return void
- */
- public function drop_foreign($name)
- {
- return $this->drop_key(__FUNCTION__, $name);
- }
- /**
- * Create a command to drop any type of index.
- *
- * @param string $type
- * @param string $name
- * @return Fluent
- */
- protected function drop_key($type, $name)
- {
- return $this->command($type, compact('name'));
- }
- /**
- * Add an auto-incrementing integer to the table.
- *
- * @param string $name
- * @return Fluent
- */
- public function increments($name)
- {
- return $this->integer($name, true);
- }
- /**
- * Add a string column to the table.
- *
- * @param string $name
- * @param int $length
- * @return Fluent
- */
- public function string($name, $length = 200)
- {
- return $this->column(__FUNCTION__, compact('name', 'length'));
- }
- /**
- * Add an integer column to the table.
- *
- * @param string $name
- * @param bool $increment
- * @return Fluent
- */
- public function integer($name, $increment = false)
- {
- return $this->column(__FUNCTION__, compact('name', 'increment'));
- }
- /**
- * Add a float column to the table.
- *
- * @param string $name
- * @return Fluent
- */
- public function float($name)
- {
- return $this->column(__FUNCTION__, compact('name'));
- }
- /**
- * Add a decimal column to the table.
- *
- * @param string $name
- * @param int $precision
- * @param int $scale
- * @return Fluent
- */
- public function decimal($name, $precision, $scale)
- {
- return $this->column(__FUNCTION__, compact('name', 'precision', 'scale'));
- }
- /**
- * Add a boolean column to the table.
- *
- * @param string $name
- * @return Fluent
- */
- public function boolean($name)
- {
- return $this->column(__FUNCTION__, compact('name'));
- }
- /**
- * Create date-time columns for creation and update timestamps.
- *
- * @return void
- */
- public function timestamps()
- {
- $this->date('created_at');
- $this->date('updated_at');
- }
- /**
- * Add a date-time column to the table.
- *
- * @param string $name
- * @return Fluent
- */
- public function date($name)
- {
- return $this->column(__FUNCTION__, compact('name'));
- }
- /**
- * Add a timestamp column to the table.
- *
- * @param string $name
- * @return Fluent
- */
- public function timestamp($name)
- {
- return $this->column(__FUNCTION__, compact('name'));
- }
- /**
- * Add a text column to the table.
- *
- * @param string $name
- * @return Fluent
- */
- public function text($name)
- {
- return $this->column(__FUNCTION__, compact('name'));
- }
- /**
- * Add a blob column to the table.
- *
- * @param string $name
- * @return Fluent
- */
- public function blob($name)
- {
- return $this->column(__FUNCTION__, compact('name'));
- }
- /**
- * Set the database connection for the table operation.
- *
- * @param string $connection
- * @return void
- */
- public function on($connection)
- {
- $this->connection = $connection;
- }
- /**
- * Determine if the schema table has a creation command.
- *
- * @return bool
- */
- public function creating()
- {
- return ! is_null(array_first($this->commands, function($key, $value)
- {
- return $value->type == 'create';
- }));
- }
- /**
- * Create a new fluent command instance.
- *
- * @param string $type
- * @param array $parameters
- * @return Fluent
- */
- protected function command($type, $parameters = array())
- {
- $parameters = array_merge(compact('type'), $parameters);
- $this->commands[] = new Fluent($parameters);
- return end($this->commands);
- }
- /**
- * Create a new fluent column instance.
- *
- * @param string $type
- * @param array $parameters
- * @return Fluent
- */
- protected function column($type, $parameters = array())
- {
- $parameters = array_merge(compact('type'), $parameters);
- $this->columns[] = new Fluent($parameters);
- return end($this->columns);
- }
- }
|