PATH:
home
/
lab2454c
/
netxzero.com
/
carbon-credit
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Schema
<?php namespace Illuminate\Database\Schema; class SqlServerBuilder extends Builder { /** * Create a database in the schema. * * @param string $name * @return bool */ public function createDatabase($name) { return $this->connection->statement( $this->grammar->compileCreateDatabase($name, $this->connection) ); } /** * Drop a database from the schema if the database exists. * * @param string $name * @return bool */ public function dropDatabaseIfExists($name) { return $this->connection->statement( $this->grammar->compileDropDatabaseIfExists($name) ); } /** * Drop all tables from the database. * * @return void */ public function dropAllTables() { $this->connection->statement($this->grammar->compileDropAllForeignKeys()); $this->connection->statement($this->grammar->compileDropAllTables()); } /** * Drop all views from the database. * * @return void */ public function dropAllViews() { $this->connection->statement($this->grammar->compileDropAllViews()); } }
[-] MySqlSchemaState.php
[edit]
[-] SqlServerBuilder.php
[edit]
[+]
..
[-] ColumnDefinition.php
[edit]
[-] SchemaState.php
[edit]
[-] ForeignIdColumnDefinition.php
[edit]
[+]
Grammars
[-] Builder.php
[edit]
[-] PostgresSchemaState.php
[edit]
[-] PostgresBuilder.php
[edit]
[-] SQLiteBuilder.php
[edit]
[-] Blueprint.php
[edit]
[-] SqliteSchemaState.php
[edit]
[-] ForeignKeyDefinition.php
[edit]
[-] MySqlBuilder.php
[edit]