schema.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <?php namespace Laravel\Database;
  2. use Laravel\Fluent;
  3. use Laravel\Database as DB;
  4. class Schema {
  5. /**
  6. * Begin a fluent schema operation on a database table.
  7. *
  8. * @param string $table
  9. * @param Closure $callback
  10. * @return void
  11. */
  12. public static function table($table, $callback)
  13. {
  14. call_user_func($callback, $table = new Schema\Table($table));
  15. return static::execute($table);
  16. }
  17. /**
  18. * Create a new database table schema.
  19. *
  20. * @param string $table
  21. * @param Closure $callback
  22. * @return void
  23. */
  24. public static function create($table, $callback)
  25. {
  26. $table = new Schema\Table($table);
  27. // To indicate that the table is new and needs to be created, we'll run
  28. // the "create" command on the table instance. This tells schema it is
  29. // not simply a column modification operation.
  30. $table->create();
  31. call_user_func($callback, $table);
  32. return static::execute($table);
  33. }
  34. /**
  35. * Rename a database table in the schema.
  36. *
  37. * @param string $table
  38. * @param string $new_name
  39. * @return void
  40. */
  41. public static function rename($table, $new_name)
  42. {
  43. $table = new Schema\Table($table);
  44. // To indicate that the table needs to be renamed, we will run the
  45. // "rename" command on the table instance and pass the instance to
  46. // the execute method as calling a Closure isn't needed.
  47. $table->rename($new_name);
  48. return static::execute($table);
  49. }
  50. /**
  51. * Drop a database table from the schema.
  52. *
  53. * @param string $table
  54. * @param string $connection
  55. * @return void
  56. */
  57. public static function drop($table, $connection = null)
  58. {
  59. $table = new Schema\Table($table);
  60. $table->on($connection);
  61. // To indicate that the table needs to be dropped, we will run the
  62. // "drop" command on the table instance and pass the instance to
  63. // the execute method as calling a Closure isn't needed.
  64. $table->drop();
  65. return static::execute($table);
  66. }
  67. /**
  68. * Execute the given schema operation against the database.
  69. *
  70. * @param Schema\Table $table
  71. * @return void
  72. */
  73. public static function execute($table)
  74. {
  75. // The implications method is responsible for finding any fluently
  76. // defined indexes on the schema table and adding the explicit
  77. // commands that are needed for the schema instance.
  78. static::implications($table);
  79. foreach ($table->commands as $command)
  80. {
  81. $connection = DB::connection($table->connection);
  82. $grammar = static::grammar($connection);
  83. // Each grammar has a function that corresponds to the command type and
  84. // is for building that command's SQL. This lets the SQL syntax builds
  85. // stay granular across various database systems.
  86. if (method_exists($grammar, $method = $command->type))
  87. {
  88. $statements = $grammar->$method($table, $command);
  89. // Once we have the statements, we will cast them to an array even
  90. // though not all of the commands return an array just in case it
  91. // needs multiple queries to complete.
  92. foreach ((array) $statements as $statement)
  93. {
  94. $connection->query($statement);
  95. }
  96. }
  97. }
  98. }
  99. /**
  100. * Add any implicit commands to the schema table operation.
  101. *
  102. * @param Schema\Table $table
  103. * @return void
  104. */
  105. protected static function implications($table)
  106. {
  107. // If the developer has specified columns for the table and the table is
  108. // not being created, we'll assume they simply want to add the columns
  109. // to the table and generate the add command.
  110. if (count($table->columns) > 0 and ! $table->creating())
  111. {
  112. $command = new Fluent(array('type' => 'add'));
  113. array_unshift($table->commands, $command);
  114. }
  115. // For some extra syntax sugar, we'll check for any implicit indexes
  116. // on the table since the developer may specify the index type on
  117. // the fluent column declaration for convenience.
  118. foreach ($table->columns as $column)
  119. {
  120. foreach (array('primary', 'unique', 'fulltext', 'index') as $key)
  121. {
  122. if (isset($column->$key))
  123. {
  124. if ($column->$key === true)
  125. {
  126. $table->$key($column->name);
  127. }
  128. else
  129. {
  130. $table->$key($column->name, $column->$key);
  131. }
  132. }
  133. }
  134. }
  135. }
  136. /**
  137. * Create the appropriate schema grammar for the driver.
  138. *
  139. * @param Connection $connection
  140. * @return Grammar
  141. */
  142. public static function grammar(Connection $connection)
  143. {
  144. $driver = $connection->driver();
  145. if (isset(\Laravel\Database::$registrar[$driver]))
  146. {
  147. return \Laravel\Database::$registrar[$driver]['schema']();
  148. }
  149. switch ($driver)
  150. {
  151. case 'mysql':
  152. return new Schema\Grammars\MySQL($connection);
  153. case 'pgsql':
  154. return new Schema\Grammars\Postgres($connection);
  155. case 'sqlsrv':
  156. return new Schema\Grammars\SQLServer($connection);
  157. case 'sqlite':
  158. return new Schema\Grammars\SQLite($connection);
  159. }
  160. throw new \Exception("Schema operations not supported for [$driver].");
  161. }
  162. }