postgres.php 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  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. $table = $this->wrap($table);
  129. $columns = $this->columnize($command->columns);
  130. return "ALTER TABLE $table ADD CONSTRAINT ".$command->name." UNIQUE ($columns)";
  131. }
  132. /**
  133. * Generate the SQL statement for creating a full-text index.
  134. *
  135. * @param Table $table
  136. * @param Fluent $command
  137. * @return string
  138. */
  139. public function fulltext(Table $table, Fluent $command)
  140. {
  141. $name = $command->name;
  142. $columns = $this->columnize($command->columns);
  143. return "CREATE INDEX {$name} ON ".$this->wrap($table)." USING gin({$columns})";
  144. }
  145. /**
  146. * Generate the SQL statement for creating a regular index.
  147. *
  148. * @param Table $table
  149. * @param Fluent $command
  150. * @return string
  151. */
  152. public function index(Table $table, Fluent $command)
  153. {
  154. return $this->key($table, $command);
  155. }
  156. /**
  157. * Generate the SQL statement for creating a new index.
  158. *
  159. * @param Table $table
  160. * @param Fluent $command
  161. * @param bool $unique
  162. * @return string
  163. */
  164. protected function key(Table $table, Fluent $command, $unique = false)
  165. {
  166. $columns = $this->columnize($command->columns);
  167. $create = ($unique) ? 'CREATE UNIQUE' : 'CREATE';
  168. return $create." INDEX {$command->name} ON ".$this->wrap($table)." ({$columns})";
  169. }
  170. /**
  171. * Generate the SQL statement for a drop table command.
  172. *
  173. * @param Table $table
  174. * @param Fluent $command
  175. * @return string
  176. */
  177. public function drop(Table $table, Fluent $command)
  178. {
  179. return 'DROP TABLE '.$this->wrap($table);
  180. }
  181. /**
  182. * Generate the SQL statement for a drop column command.
  183. *
  184. * @param Table $table
  185. * @param Fluent $command
  186. * @return string
  187. */
  188. public function drop_column(Table $table, Fluent $command)
  189. {
  190. $columns = array_map(array($this, 'wrap'), $command->columns);
  191. // Once we the array of column names, we need to add "drop" to the front
  192. // of each column, then we'll concatenate the columns using commas and
  193. // generate the alter statement SQL.
  194. $columns = implode(', ', array_map(function($column)
  195. {
  196. return 'DROP COLUMN '.$column;
  197. }, $columns));
  198. return 'ALTER TABLE '.$this->wrap($table).' '.$columns;
  199. }
  200. /**
  201. * Generate the SQL statement for a drop primary key command.
  202. *
  203. * @param Table $table
  204. * @param Fluent $command
  205. * @return string
  206. */
  207. public function drop_primary(Table $table, Fluent $command)
  208. {
  209. return 'ALTER TABLE '.$this->wrap($table).' DROP CONSTRAINT '.$table->name.'_pkey';
  210. }
  211. /**
  212. * Generate the SQL statement for a drop unqique key command.
  213. *
  214. * @param Table $table
  215. * @param Fluent $command
  216. * @return string
  217. */
  218. public function drop_unique(Table $table, Fluent $command)
  219. {
  220. return $this->drop_constraint($table, $command);
  221. }
  222. /**
  223. * Generate the SQL statement for a drop full-text key command.
  224. *
  225. * @param Table $table
  226. * @param Fluent $command
  227. * @return string
  228. */
  229. public function drop_fulltext(Table $table, Fluent $command)
  230. {
  231. return $this->drop_key($table, $command);
  232. }
  233. /**
  234. * Generate the SQL statement for a drop index command.
  235. *
  236. * @param Table $table
  237. * @param Fluent $command
  238. * @return string
  239. */
  240. public function drop_index(Table $table, Fluent $command)
  241. {
  242. return $this->drop_key($table, $command);
  243. }
  244. /**
  245. * Generate the SQL statement for a drop key command.
  246. *
  247. * @param Table $table
  248. * @param Fluent $command
  249. * @return string
  250. */
  251. protected function drop_key(Table $table, Fluent $command)
  252. {
  253. return 'DROP INDEX '.$command->name;
  254. }
  255. /**
  256. * Drop a foreign key constraint from the table.
  257. *
  258. * @param Table $table
  259. * @param Fluent $fluent
  260. * @return string
  261. */
  262. public function drop_foreign(Table $table, Fluent $command)
  263. {
  264. return $this->drop_constraint($table, $command);
  265. }
  266. /**
  267. * Generate the data-type definition for a string.
  268. *
  269. * @param Fluent $column
  270. * @return string
  271. */
  272. protected function type_string(Fluent $column)
  273. {
  274. return 'VARCHAR('.$column->length.')';
  275. }
  276. /**
  277. * Generate the data-type definition for an integer.
  278. *
  279. * @param Fluent $column
  280. * @return string
  281. */
  282. protected function type_integer(Fluent $column)
  283. {
  284. return ($column->increment) ? 'SERIAL' : 'BIGINT';
  285. }
  286. /**
  287. * Generate the data-type definition for an integer.
  288. *
  289. * @param Fluent $column
  290. * @return string
  291. */
  292. protected function type_float(Fluent $column)
  293. {
  294. return 'REAL';
  295. }
  296. /**
  297. * Generate the data-type definintion for a decimal.
  298. *
  299. * @param Fluent $column
  300. * @return string
  301. */
  302. protected function type_decimal(Fluent $column)
  303. {
  304. return "DECIMAL({$column->precision}, {$column->scale})";
  305. }
  306. /**
  307. * Generate the data-type definition for a boolean.
  308. *
  309. * @param Fluent $column
  310. * @return string
  311. */
  312. protected function type_boolean(Fluent $column)
  313. {
  314. return 'SMALLINT';
  315. }
  316. /**
  317. * Generate the data-type definition for a date.
  318. *
  319. * @param Fluent $column
  320. * @return string
  321. */
  322. protected function type_date(Fluent $column)
  323. {
  324. return 'TIMESTAMP(0) WITHOUT TIME ZONE';
  325. }
  326. /**
  327. * Generate the data-type definition for a timestamp.
  328. *
  329. * @param Fluent $column
  330. * @return string
  331. */
  332. protected function type_timestamp(Fluent $column)
  333. {
  334. return 'TIMESTAMP';
  335. }
  336. /**
  337. * Generate the data-type definition for a text column.
  338. *
  339. * @param Fluent $column
  340. * @return string
  341. */
  342. protected function type_text(Fluent $column)
  343. {
  344. return 'TEXT';
  345. }
  346. /**
  347. * Generate the data-type definition for a blob.
  348. *
  349. * @param Fluent $column
  350. * @return string
  351. */
  352. protected function type_blob(Fluent $column)
  353. {
  354. return 'BYTEA';
  355. }
  356. }