681db52ba6
refactored SchemaBuilder
...
- rename class to ColumnSchemaBuilder as this is more appropriate
- changed internal organisation to match how the rest of schema related classes work
- the ColumnSchemaBuilder is now created the same way as QueryBuilder is
- removed static call magic and method annotations, now real methods are called as they are
- the whole code works on objects in a db context now instead of setting database connection in global state
- trait is now used by Migration by default but can be used in other contexts as well
Migration usage is now as follows:
```php
$this->createTable('example_table', [
'id' => $this->primaryKey(),
'name' => $this->string(64)->notNull(),
'type' => $this->integer()->notNull()->defaultValue(10),
'description' => $this->text(),
'rule_name' => $this->string(64),
'data' => $this->text(),
'created_at' => $this->datetime()->notNull(),
'updated_at' => $this->datetime(),
]);
```
2015-08-03 23:25:50 +02:00
a2568d1ec8
updated some comments and @since annotations
2015-08-02 19:56:49 +02:00
5af6105ea7
Fixes #9127 , Fixes #9128 : Fixed MSSQL QueryBuilder::renameColumn() and QueryBuilder::renameTable() escaping
2015-07-16 18:22:40 +03:00
3f7ffd6707
Improved SchemaBuilder docs, refactored code
2015-07-08 15:39:34 +03:00
b456f699cc
Implemented SchemaBuilder
2015-07-08 15:38:21 +03:00
651ed4ee2c
Undefined class NotSupportedException
2015-06-08 16:11:16 +03:00
2288f339e6
Parameter type is not compatible with declaration
2015-06-08 16:07:27 +03:00
ec920d2881
add missing schema name conditions for mssql
...
close #8046
fixes #6234
2015-05-10 00:31:43 +02:00
ef662b57be
added missing @since annotations
2015-04-24 12:09:40 +02:00
4d1ca9ff17
Fixes #7831 : Add order when fetching database table names and constraints
2015-03-30 22:18:56 +03:00
29304a185a
Fixes #7833 : Support (materialized) views and foreign tables along normal tables when fetching table schema
2015-03-30 19:01:12 +03:00
48255a446d
Fixes #7867 : Fixes findUniqueIndexes not to perform any processing on unique index on function for pgsql, Implemented findUniqueIndexes for oci and mssql
2015-03-30 18:01:30 +03:00
2aace3714c
minor adjustments
2015-03-01 01:24:28 +01:00
5870a74672
Added Schema::DOUBLE to represent ANSI SQL Double Precision
2015-02-25 16:01:37 +03:00
1e5f159f78
override only mssql and sqlite QueryBuilder; throw an exception for composite in condition with a subquery
2015-01-31 22:20:41 -05:00
b9a6b65e89
Implicit type casting to avoid buggy dblib issues
2014-12-25 23:49:20 +03:00
44b5e8ef60
Fixes #4954 : MSSQL column comments are not retrieved correctly
2014-09-10 13:44:04 -04:00
e15cfc0286
allow precision for binary type in MSSQL
...
fixes #4931
2014-09-05 15:14:59 +02:00
212c5ee3ef
Fixes #4254 : SqlDataProvider does not work with Oracle and SQL Server
2014-09-03 14:42:09 -04:00
7aed617c38
Fixes #4813 : Fixed MSSQL schema that was getting incorrect info about constraints
2014-08-26 14:12:24 +04:00
3704b9191e
Fixes #4697 : MSSQL query builder does not work for newer MSSQL versions when LIMIT is used without ORDER BY
2014-08-13 21:07:30 -04:00
20774165bc
Fixes #4644 : Added \yii\db\Schema::createColumnSchema() to be able to customize column schema used
2014-08-12 00:01:27 +04:00
3a1e0f3a5c
property codestyle framework
2014-07-30 00:21:31 +02:00
0edd8bc65a
Fixed missing and incorrect phpdoc
2014-07-25 17:26:35 +04:00
06bbf017a0
Fixes #4342
2014-07-22 17:39:00 +02:00
0a5894fcd8
Fixes #4299
2014-07-13 21:35:35 -04:00
43333d9cad
Implemented master balancing.
2014-07-11 22:33:36 -04:00
e67d0b3c39
WIP
2014-07-11 14:01:44 -04:00
9cb36d01a7
Fixes #4212 : MSSQL query builder should not generate the ORDER BY clause when it is not needed
2014-07-08 20:37:53 -04:00
5d0452b2ae
rename ColumnSchema::typecast to phpTypecast
2014-06-27 02:12:59 +02:00
8a70d9fbd1
rename column schema typecast method
2014-06-26 00:11:04 +02:00
6a48f68955
split typecast method into two
...
one method for fetching data and one for sending to db.
fixes #2287
2014-06-26 00:00:37 +02:00
0c14f47f9a
Fixes #3793 : Changed inline autocomplete hints style to get more IDEs support
2014-06-20 17:40:00 +04:00
714f27ab22
Fixes #3241
2014-06-09 02:30:48 +04:00
b01e6de9bc
Fixes #3399 : Added support for MS SQL Server older than 2012
2014-06-09 02:29:57 +04:00
a4f23f1cba
Merge branch 'patch-1' of github.com:fourteenmeister/yii2 into fourteenmeister-patch-1
2014-06-09 02:13:04 +04:00
d75f0c7288
removed @link tags from apidoc and replaced with markdown
2014-05-25 22:29:31 +02:00
f5dbd9a084
Fixes #3564 : Fixed the bug that primary key columns should not take default values from schema
2014-05-23 10:35:20 -04:00
f98c414cd1
Update QueryBuilder.php
...
solution used **heukirne** for the names of columns.
2014-05-15 12:03:50 +09:00
f46c706033
Update QueryBuilder.php
...
fix error occurs when you use multiple databases.
2014-05-14 10:20:57 +09:00
b36b9bfdad
fix error
...
fix error when if fields whose names are reserved word
2014-05-13 10:41:29 +09:00
3e45097126
MS SQL Server fix for older versions than 2012 (alternative solution)
...
This alternative solution LIMIT, OFFSET problem SQL Server version older than 2012.
2014-05-08 13:04:36 +09:00
991a894596
Added missing ROWS token when building limit/offset for MSSQL.
2014-04-15 21:01:45 -04:00
1fd0068378
Fixes #3066 : yii\db\mssql\Schema::getTableSchema() should return null when the table does not exist.
2014-04-15 20:50:43 -04:00
3c400dbca8
fixed file PHPdoc
...
issue #3026
2014-04-10 22:10:59 +02:00
bf3c75147d
reverted breaking PHPdoc codestyle changes
...
issue #2852
2014-03-23 20:51:09 +01:00
b5f8a4dc22
Reformat code te be PSR-2 compatible
2014-03-16 10:46:21 +06:00
c79d233ea4
Fixes #2552 .
2014-02-26 07:10:47 -05:00
bea9e3fc06
Fixes #1645 : Added support for nested DB transactions
2014-02-15 22:16:09 -05:00
8e11629a65
Fixes #2160 : SphinxQL does not support OFFSET
...
Improved `QueryBuilder::buildLimit()` to support big numbers
2014-01-29 22:42:56 -05:00