<?php /** * Created by Cristian. * Date: 02/10/16 07:56 PM. */ namespace Reliese\Meta; /** * Created by Cristian. * Date: 18/09/16 06:50 PM. */ interface Schema { /** * @return \Illuminate\Database\ConnectionInterface */ public function connection(); /** * @return string */ public function schema(); /** * @return \Reliese\Meta\Blueprint[] */ public function tables(); /** * @param string $table * * @return bool */ public function has($table); /** * @param string $table * * @return \Reliese\Meta\Blueprint */ public function table($table); /** * @param \Reliese\Meta\Blueprint $table * * @return array */ public function referencing(Blueprint $table); }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
MySql | Folder | 0755 |
|
|
Postgres | Folder | 0755 |
|
|
Sqlite | Folder | 0755 |
|
|
Blueprint.php | File | 5.3 KB | 0644 |
|
Column.php | File | 205 B | 0644 |
|
Schema.php | File | 809 B | 0644 |
|
SchemaManager.php | File | 3.07 KB | 0644 |
|