postgres.php 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. <?php namespace Laravel\Database\Schema\Grammars;
  2. use Laravel\Fluent;
  3. use Laravel\Database\Schema\Table;
  4. class Postgres extends Grammar {
  5. /**
  6. * Generate the SQL statements for a table creation command.
  7. *
  8. * @param Table $table
  9. * @param Fluent $command
  10. * @return array
  11. */
  12. public function create(Table $table, Fluent $command)
  13. {
  14. $columns = implode(', ', $this->columns($table));
  15. // First we will generate the base table creation statement. Other than auto
  16. // incrementing keys, no indexes will be created during the first creation
  17. // of the table as they're added in separate commands.
  18. $sql = 'CREATE TABLE '.$this->wrap($table).' ('.$columns.')';
  19. return $sql;
  20. }
  21. /**
  22. * Geenrate the SQL statements for a table modification command.
  23. *
  24. * @param Table $table
  25. * @param Fluent $command
  26. * @return array
  27. */
  28. public function add(Table $table, Fluent $command)
  29. {
  30. $columns = $this->columns($table);
  31. // Once we the array of column definitions, we need to add "add" to the
  32. // front of each definition, then we'll concatenate the definitions
  33. // using commas like normal and generate the SQL.
  34. $columns = implode(', ', array_map(function($column)
  35. {
  36. return 'ADD COLUMN '.$column;
  37. }, $columns));
  38. return 'ALTER TABLE '.$this->wrap($table).' '.$columns;
  39. }
  40. /**
  41. * Create the individual column definitions for the table.
  42. *
  43. * @param Table $table
  44. * @return array
  45. */
  46. protected function columns(Table $table)
  47. {
  48. $columns = array();
  49. foreach ($table->columns as $column)
  50. {
  51. // Each of the data type's have their own definition creation method,
  52. // which is responsible for creating the SQL for the type. This lets
  53. // us to keep the syntax easy and fluent, while translating the
  54. // types to the types used by the database.
  55. $sql = $this->wrap($column).' '.$this->type($column);
  56. $elements = array('incrementer', 'nullable', 'defaults');
  57. foreach ($elements as $element)
  58. {
  59. $sql .= $this->$element($table, $column);
  60. }
  61. $columns[] = $sql;
  62. }
  63. return $columns;
  64. }
  65. /**
  66. * Get the SQL syntax for indicating if a column is nullable.
  67. *
  68. * @param Table $table
  69. * @param Fluent $column
  70. * @return string
  71. */
  72. protected function nullable(Table $table, Fluent $column)
  73. {
  74. return ($column->nullable) ? ' NULL' : ' NOT NULL';
  75. }
  76. /**
  77. * Get the SQL syntax for specifying a default value on a column.
  78. *
  79. * @param Table $table
  80. * @param Fluent $column
  81. * @return string
  82. */
  83. protected function defaults(Table $table, Fluent $column)
  84. {
  85. if ( ! is_null($column->default))
  86. {
  87. return " DEFAULT '".$column->default."'";
  88. }
  89. }
  90. /**
  91. * Get the SQL syntax for defining an auto-incrementing column.
  92. *
  93. * @param Table $table
  94. * @param Fluent $column
  95. * @return string
  96. */
  97. protected function incrementer(Table $table, Fluent $column)
  98. {
  99. // We don't actually need to specify an "auto_increment" keyword since we
  100. // handle the auto-increment definition in the type definition for
  101. // integers by changing the type to "serial".
  102. if ($column->type == 'integer' and $column->increment)
  103. {
  104. return ' PRIMARY KEY';
  105. }
  106. }
  107. /**
  108. * Generate the SQL statement for creating a primary key.
  109. *
  110. * @param Table $table
  111. * @param Fluent $command
  112. * @return string
  113. */
  114. public function primary(Table $table, Fluent $command)
  115. {
  116. $columns = $this->columnize($command->columns);
  117. return 'ALTER TABLE '.$this->wrap($table)." ADD PRIMARY KEY ({$columns})";
  118. }
  119. /**
  120. * Generate the SQL statement for creating a unique index.
  121. *
  122. * @param Table $table
  123. * @param Fluent $command
  124. * @return string
  125. */
  126. public function unique(Table $table, Fluent $command)
  127. {
  128. return $this->key($table, $command, true);
  129. }
  130. /**
  131. * Generate the SQL statement for creating a full-text index.
  132. *
  133. * @param Table $table
  134. * @param Fluent $command
  135. * @return string
  136. */
  137. public function fulltext(Table $table, Fluent $command)
  138. {
  139. $name = $command->name;
  140. $columns = $this->columnize($command->columns);
  141. return "CREATE INDEX {$name} ON ".$this->wrap($table)." USING gin({$columns})";
  142. }
  143. /**
  144. * Generate the SQL statement for creating a regular index.
  145. *
  146. * @param Table $table
  147. * @param Fluent $command
  148. * @return string
  149. */
  150. public function index(Table $table, Fluent $command)
  151. {
  152. return $this->key($table, $command);
  153. }
  154. /**
  155. * Generate the SQL statement for creating a new index.
  156. *
  157. * @param Table $table
  158. * @param Fluent $command
  159. * @param bool $unique
  160. * @return string
  161. */
  162. protected function key(Table $table, Fluent $command, $unique = false)
  163. {
  164. $columns = $this->columnize($command->columns);
  165. $create = ($unique) ? 'CREATE UNIQUE' : 'CREATE';
  166. return $create." INDEX {$command->name} ON ".$this->wrap($table)." ({$columns})";
  167. }
  168. /**
  169. * Generate the SQL statement for a drop table command.
  170. *
  171. * @param Table $table
  172. * @param Fluent $command
  173. * @return string
  174. */
  175. public function drop(Table $table, Fluent $command)
  176. {
  177. return 'DROP TABLE '.$this->wrap($table);
  178. }
  179. /**
  180. * Generate the SQL statement for a drop column command.
  181. *
  182. * @param Table $table
  183. * @param Fluent $command
  184. * @return string
  185. */
  186. public function drop_column(Table $table, Fluent $command)
  187. {
  188. $columns = array_map(array($this, 'wrap'), $command->columns);
  189. // Once we the array of column names, we need to add "drop" to the front
  190. // of each column, then we'll concatenate the columns using commas and
  191. // generate the alter statement SQL.
  192. $columns = implode(', ', array_map(function($column)
  193. {
  194. return 'DROP COLUMN '.$column;
  195. }, $columns));
  196. return 'ALTER TABLE '.$this->wrap($table).' '.$columns;
  197. }
  198. /**
  199. * Generate the SQL statement for a drop primary key command.
  200. *
  201. * @param Table $table
  202. * @param Fluent $command
  203. * @return string
  204. */
  205. public function drop_primary(Table $table, Fluent $command)
  206. {
  207. return 'ALTER TABLE '.$this->wrap($table).' DROP CONSTRAINT '.$table->name.'_pkey';
  208. }
  209. /**
  210. * Generate the SQL statement for a drop unqique key command.
  211. *
  212. * @param Table $table
  213. * @param Fluent $command
  214. * @return string
  215. */
  216. public function drop_unique(Table $table, Fluent $command)
  217. {
  218. return $this->drop_key($table, $command);
  219. }
  220. /**
  221. * Generate the SQL statement for a drop full-text key command.
  222. *
  223. * @param Table $table
  224. * @param Fluent $command
  225. * @return string
  226. */
  227. public function drop_fulltext(Table $table, Fluent $command)
  228. {
  229. return $this->drop_key($table, $command);
  230. }
  231. /**
  232. * Generate the SQL statement for a drop index command.
  233. *
  234. * @param Table $table
  235. * @param Fluent $command
  236. * @return string
  237. */
  238. public function drop_index(Table $table, Fluent $command)
  239. {
  240. return $this->drop_key($table, $command);
  241. }
  242. /**
  243. * Generate the SQL statement for a drop key command.
  244. *
  245. * @param Table $table
  246. * @param Fluent $command
  247. * @return string
  248. */
  249. protected function drop_key(Table $table, Fluent $command)
  250. {
  251. return 'DROP INDEX '.$command->name;
  252. }
  253. /**
  254. * Generate the data-type definition for a string.
  255. *
  256. * @param Fluent $column
  257. * @return string
  258. */
  259. protected function type_string(Fluent $column)
  260. {
  261. return 'VARCHAR('.$column->length.')';
  262. }
  263. /**
  264. * Generate the data-type definition for an integer.
  265. *
  266. * @param Fluent $column
  267. * @return string
  268. */
  269. protected function type_integer(Fluent $column)
  270. {
  271. return ($column->increment) ? 'SERIAL' : 'INTEGER';
  272. }
  273. /**
  274. * Generate the data-type definition for an integer.
  275. *
  276. * @param Fluent $column
  277. * @return string
  278. */
  279. protected function type_float(Fluent $column)
  280. {
  281. return 'REAL';
  282. }
  283. /**
  284. * Generate the data-type definition for a boolean.
  285. *
  286. * @param Fluent $column
  287. * @return string
  288. */
  289. protected function type_boolean(Fluent $column)
  290. {
  291. return 'SMALLINT';
  292. }
  293. /**
  294. * Generate the data-type definition for a date.
  295. *
  296. * @param Fluent $column
  297. * @return string
  298. */
  299. protected function type_date(Fluent $column)
  300. {
  301. return 'TIMESTAMP';
  302. }
  303. /**
  304. * Generate the data-type definition for a timestamp.
  305. *
  306. * @param Fluent $column
  307. * @return string
  308. */
  309. protected function type_timestamp(Fluent $column)
  310. {
  311. return 'TIMESTAMP';
  312. }
  313. /**
  314. * Generate the data-type definition for a text column.
  315. *
  316. * @param Fluent $column
  317. * @return string
  318. */
  319. protected function type_text(Fluent $column)
  320. {
  321. return 'TEXT';
  322. }
  323. /**
  324. * Generate the data-type definition for a blob.
  325. *
  326. * @param Fluent $column
  327. * @return string
  328. */
  329. protected function type_blob(Fluent $column)
  330. {
  331. return 'BYTEA';
  332. }
  333. }