| 1 | <?php |
||
| 7 | class OracleBlueprint extends Blueprint |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Database prefix variable |
||
| 11 | * |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $prefix; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * set table prefix settings |
||
| 18 | * |
||
| 19 | * @param string $prefix |
||
| 20 | */ |
||
| 21 | public function setTablePrefix($prefix = '') |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Add creation and update timestampTz columns to the table. |
||
| 28 | * |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | public function timestampsTz() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Create a default index name for the table. |
||
| 40 | * |
||
| 41 | * @param string $type |
||
| 42 | * @param array $columns |
||
| 43 | * @return string |
||
| 44 | */ |
||
| 45 | protected function createIndexName($type, array $columns) |
||
| 52 | } |
||
| 53 |