database.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php namespace Laravel\CLI\Tasks\Migrate;
  2. use Laravel\Database as DB;
  3. class Database {
  4. /**
  5. * Log a migration in the migration table.
  6. *
  7. * @param string $bundle
  8. * @param string $name
  9. * @param int $batch
  10. * @return void
  11. */
  12. public function log($bundle, $name, $batch)
  13. {
  14. $this->table()->insert(compact('bundle', 'name', 'batch'));
  15. }
  16. /**
  17. * Delete a row from the migration table.
  18. *
  19. * @param string $bundle
  20. * @param string $name
  21. * @return void
  22. */
  23. public function delete($bundle, $name)
  24. {
  25. $this->table()->where_bundle_and_name($bundle, $name)->delete();
  26. }
  27. /**
  28. * Return an array of the last batch of migrations.
  29. *
  30. * @return array
  31. */
  32. public function last()
  33. {
  34. $table = $this->table();
  35. // First we need to grab the last batch ID from the migration table,
  36. // as this will allow us to grab the lastest batch of migrations
  37. // that need to be run for a rollback command.
  38. $id = $this->batch();
  39. // Once we have the batch ID, we will pull all of the rows for that
  40. // batch. Then we can feed the results into the resolve method to
  41. // get the migration instances for the command.
  42. return $table->where_batch($id)->order_by('name', 'desc')->get();
  43. }
  44. /**
  45. * Get all of the migrations that have run for a bundle.
  46. *
  47. * @param string $bundle
  48. * @return array
  49. */
  50. public function ran($bundle)
  51. {
  52. return $this->table()->where_bundle($bundle)->lists('name');
  53. }
  54. /**
  55. * Get the maximum batch ID from the migration table.
  56. *
  57. * @return int
  58. */
  59. public function batch()
  60. {
  61. return $this->table()->max('batch');
  62. }
  63. /**
  64. * Get a database query instance for the migration table.
  65. *
  66. * @return Query
  67. */
  68. protected function table()
  69. {
  70. return DB::connection()->table('laravel_migrations');
  71. }
  72. }