grammar.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php namespace Laravel\Database\Schema\Grammars;
  2. use Laravel\Fluent;
  3. use Laravel\Database\Schema\Table;
  4. abstract class Grammar extends \Laravel\Database\Grammar {
  5. /**
  6. * Generate the SQL statement for creating a foreign key.
  7. *
  8. * @param Table $table
  9. * @param Command $command
  10. * @return string
  11. */
  12. public function foreign(Table $table, Fluent $command)
  13. {
  14. $name = $command->name;
  15. // We need to wrap both of the table names in quoted identifiers to protect
  16. // against any possible keyword collisions, both the table on which the
  17. // command is being executed and the referenced table are wrapped.
  18. $table = $this->wrap($table);
  19. $on = $this->wrap_table($command->on);
  20. // Next we need to columnize both the command table's columns as well as
  21. // the columns referenced by the foreign key. We'll cast the referenced
  22. // columns to an array since they aren't by the fluent command.
  23. $foreign = $this->columnize($command->columns);
  24. $referenced = $this->columnize((array) $command->references);
  25. $sql = "ALTER TABLE $table ADD CONSTRAINT $name ";
  26. $sql .= "FOREIGN KEY ($foreign) REFERENCES $on ($referenced)";
  27. // Finally we will check for any "on delete" or "on update" options for
  28. // the foreign key. These control the behavior of the constraint when
  29. // an update or delete statement is run against the record.
  30. if ( ! is_null($command->on_delete))
  31. {
  32. $sql .= " ON DELETE {$command->on_delete}";
  33. }
  34. if ( ! is_null($command->on_update))
  35. {
  36. $sql .= " ON UPDATE {$command->on_update}";
  37. }
  38. return $sql;
  39. }
  40. /**
  41. * Drop a constraint from the table.
  42. *
  43. * @param Table $table
  44. * @param Fluent $fluent
  45. * @return string
  46. */
  47. protected function drop_constraint(Table $table, Fluent $command)
  48. {
  49. return "ALTER TABLE ".$this->wrap($table)." DROP CONSTRAINT ".$command->name;
  50. }
  51. /**
  52. * Wrap a value in keyword identifiers.
  53. *
  54. * @param Table|string $value
  55. * @return string
  56. */
  57. public function wrap($value)
  58. {
  59. // This method is primarily for convenience so we can just pass a
  60. // column or table instance into the wrap method without sending
  61. // in the name each time we need to wrap one of these objects.
  62. if ($value instanceof Table)
  63. {
  64. return $this->wrap_table($value->name);
  65. }
  66. elseif ($value instanceof Fluent)
  67. {
  68. $value = $value->name;
  69. }
  70. return parent::wrap($value);
  71. }
  72. /**
  73. * Get the appropriate data type definition for the column.
  74. *
  75. * @param Fluent $column
  76. * @return string
  77. */
  78. protected function type(Fluent $column)
  79. {
  80. return $this->{'type_'.$column->type}($column);
  81. }
  82. }