table.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. <?php namespace Laravel\Database\Schema;
  2. use Laravel\Fluent;
  3. class Table {
  4. /**
  5. * The database table name.
  6. *
  7. * @var string
  8. */
  9. public $name;
  10. /**
  11. * The database connection that should be used.
  12. *
  13. * @var string
  14. */
  15. public $connection;
  16. /**
  17. * The engine that should be used for the table.
  18. *
  19. * @var string
  20. */
  21. public $engine;
  22. /**
  23. * The columns that should be added to the table.
  24. *
  25. * @var array
  26. */
  27. public $columns = array();
  28. /**
  29. * The commands that should be executed on the table.
  30. *
  31. * @var array
  32. */
  33. public $commands = array();
  34. /**
  35. * Create a new schema table instance.
  36. *
  37. * @param string $name
  38. * @return void
  39. */
  40. public function __construct($name)
  41. {
  42. $this->name = $name;
  43. }
  44. /**
  45. * Indicate that the table should be created.
  46. *
  47. * @return Fluent
  48. */
  49. public function create()
  50. {
  51. return $this->command(__FUNCTION__);
  52. }
  53. /**
  54. * Create a new primary key on the table.
  55. *
  56. * @param string|array $columns
  57. * @param string $name
  58. * @return Fluent
  59. */
  60. public function primary($columns, $name = null)
  61. {
  62. return $this->key(__FUNCTION__, $columns, $name);
  63. }
  64. /**
  65. * Create a new unique index on the table.
  66. *
  67. * @param string|array $columns
  68. * @param string $name
  69. * @return Fluent
  70. */
  71. public function unique($columns, $name = null)
  72. {
  73. return $this->key(__FUNCTION__, $columns, $name);
  74. }
  75. /**
  76. * Create a new full-text index on the table.
  77. *
  78. * @param string|array $columns
  79. * @param string $name
  80. * @return Fluent
  81. */
  82. public function fulltext($columns, $name = null)
  83. {
  84. return $this->key(__FUNCTION__, $columns, $name);
  85. }
  86. /**
  87. * Create a new index on the table.
  88. *
  89. * @param string|array $columns
  90. * @param string $name
  91. * @return Fluent
  92. */
  93. public function index($columns, $name = null)
  94. {
  95. return $this->key(__FUNCTION__, $columns, $name);
  96. }
  97. /**
  98. * Add a foreign key constraint to the table.
  99. *
  100. * @param string|array $columns
  101. * @param string $name
  102. */
  103. public function foreign($columns, $name = null)
  104. {
  105. return $this->key(__FUNCTION__, $columns, $name);
  106. }
  107. /**
  108. * Create a command for creating any index.
  109. *
  110. * @param string $type
  111. * @param string|array $columns
  112. * @param string $name
  113. * @return Fluent
  114. */
  115. public function key($type, $columns, $name)
  116. {
  117. $columns = (array) $columns;
  118. // If no index name was specified, we will concatenate the columns and
  119. // append the index type to the name to generate a unique name for
  120. // the index that can be used when dropping indexes.
  121. if (is_null($name))
  122. {
  123. $name = str_replace(array('-', '.'), '_', $this->name);
  124. $name = $name.'_'.implode('_', $columns).'_'.$type;
  125. }
  126. return $this->command($type, compact('name', 'columns'));
  127. }
  128. /**
  129. * Drop the database table.
  130. *
  131. * @return Fluent
  132. */
  133. public function drop()
  134. {
  135. return $this->command(__FUNCTION__);
  136. }
  137. /**
  138. * Drop a column from the table.
  139. *
  140. * @param string|array $columns
  141. * @return void
  142. */
  143. public function drop_column($columns)
  144. {
  145. return $this->command(__FUNCTION__, array('columns' => (array) $columns));
  146. }
  147. /**
  148. * Drop a primary key from the table.
  149. *
  150. * @param string $name
  151. * @return void
  152. */
  153. public function drop_primary($name = null)
  154. {
  155. return $this->drop_key(__FUNCTION__, $name);
  156. }
  157. /**
  158. * Drop a unique index from the table.
  159. *
  160. * @param string $name
  161. * @return void
  162. */
  163. public function drop_unique($name)
  164. {
  165. return $this->drop_key(__FUNCTION__, $name);
  166. }
  167. /**
  168. * Drop a full-text index from the table.
  169. *
  170. * @param string $name
  171. * @return void
  172. */
  173. public function drop_fulltext($name)
  174. {
  175. return $this->drop_key(__FUNCTION__, $name);
  176. }
  177. /**
  178. * Drop an index from the table.
  179. *
  180. * @param string $name
  181. * @return void
  182. */
  183. public function drop_index($name)
  184. {
  185. return $this->drop_key(__FUNCTION__, $name);
  186. }
  187. /**
  188. * Drop a foreign key constraint from the table.
  189. *
  190. * @param string $name
  191. * @return void
  192. */
  193. public function drop_foreign($name)
  194. {
  195. return $this->drop_key(__FUNCTION__, $name);
  196. }
  197. /**
  198. * Create a command to drop any type of index.
  199. *
  200. * @param string $type
  201. * @param string $name
  202. * @return Fluent
  203. */
  204. protected function drop_key($type, $name)
  205. {
  206. return $this->command($type, compact('name'));
  207. }
  208. /**
  209. * Add an auto-incrementing integer to the table.
  210. *
  211. * @param string $name
  212. * @return Fluent
  213. */
  214. public function increments($name)
  215. {
  216. return $this->integer($name, true);
  217. }
  218. /**
  219. * Add a string column to the table.
  220. *
  221. * @param string $name
  222. * @param int $length
  223. * @return Fluent
  224. */
  225. public function string($name, $length = 200)
  226. {
  227. return $this->column(__FUNCTION__, compact('name', 'length'));
  228. }
  229. /**
  230. * Add an integer column to the table.
  231. *
  232. * @param string $name
  233. * @param bool $increment
  234. * @return Fluent
  235. */
  236. public function integer($name, $increment = false)
  237. {
  238. return $this->column(__FUNCTION__, compact('name', 'increment'));
  239. }
  240. /**
  241. * Add a float column to the table.
  242. *
  243. * @param string $name
  244. * @return Fluent
  245. */
  246. public function float($name)
  247. {
  248. return $this->column(__FUNCTION__, compact('name'));
  249. }
  250. /**
  251. * Add a decimal column to the table.
  252. *
  253. * @param string $name
  254. * @param int $precision
  255. * @param int $scale
  256. * @return Fluent
  257. */
  258. public function decimal($name, $precision, $scale)
  259. {
  260. return $this->column(__FUNCTION__, compact('name', 'precision', 'scale'));
  261. }
  262. /**
  263. * Add a boolean column to the table.
  264. *
  265. * @param string $name
  266. * @return Fluent
  267. */
  268. public function boolean($name)
  269. {
  270. return $this->column(__FUNCTION__, compact('name'));
  271. }
  272. /**
  273. * Create date-time columns for creation and update timestamps.
  274. *
  275. * @return void
  276. */
  277. public function timestamps()
  278. {
  279. $this->date('created_at');
  280. $this->date('updated_at');
  281. }
  282. /**
  283. * Add a date-time column to the table.
  284. *
  285. * @param string $name
  286. * @return Fluent
  287. */
  288. public function date($name)
  289. {
  290. return $this->column(__FUNCTION__, compact('name'));
  291. }
  292. /**
  293. * Add a timestamp column to the table.
  294. *
  295. * @param string $name
  296. * @return Fluent
  297. */
  298. public function timestamp($name)
  299. {
  300. return $this->column(__FUNCTION__, compact('name'));
  301. }
  302. /**
  303. * Add a text column to the table.
  304. *
  305. * @param string $name
  306. * @return Fluent
  307. */
  308. public function text($name)
  309. {
  310. return $this->column(__FUNCTION__, compact('name'));
  311. }
  312. /**
  313. * Add a blob column to the table.
  314. *
  315. * @param string $name
  316. * @return Fluent
  317. */
  318. public function blob($name)
  319. {
  320. return $this->column(__FUNCTION__, compact('name'));
  321. }
  322. /**
  323. * Set the database connection for the table operation.
  324. *
  325. * @param string $connection
  326. * @return void
  327. */
  328. public function on($connection)
  329. {
  330. $this->connection = $connection;
  331. }
  332. /**
  333. * Determine if the schema table has a creation command.
  334. *
  335. * @return bool
  336. */
  337. public function creating()
  338. {
  339. return ! is_null(array_first($this->commands, function($key, $value)
  340. {
  341. return $value->type == 'create';
  342. }));
  343. }
  344. /**
  345. * Create a new fluent command instance.
  346. *
  347. * @param string $type
  348. * @param array $parameters
  349. * @return Fluent
  350. */
  351. protected function command($type, $parameters = array())
  352. {
  353. $parameters = array_merge(compact('type'), $parameters);
  354. $this->commands[] = new Fluent($parameters);
  355. return end($this->commands);
  356. }
  357. /**
  358. * Create a new fluent column instance.
  359. *
  360. * @param string $type
  361. * @param array $parameters
  362. * @return Fluent
  363. */
  364. protected function column($type, $parameters = array())
  365. {
  366. $parameters = array_merge(compact('type'), $parameters);
  367. $this->columns[] = new Fluent($parameters);
  368. return end($this->columns);
  369. }
  370. }