Carsten Brandt
edd6e719bb
added missing since annotations and removed duplicate line
2016-04-28 03:02:17 +02:00
Carsten Brandt
627233715b
proper @since annotations
2016-04-28 02:25:32 +02:00
SilverFire - Dmitry Naumenko
15432971d6
db/ColumnSchemaBuilder::buildCommentString() returns empty string by default
2016-04-20 09:26:07 +03:00
SilverFire - Dmitry Naumenko
0fe27b9d3b
Refactored code in PR #9441
2016-04-19 17:48:25 +03:00
SilverFire - Dmitry Naumenko
c9dfc90be0
Merge branch 'methods_for_schema_builder' of https://github.com/vaseninm/yii2 into vaseninm-methods_for_schema_builder
2016-04-19 12:21:33 +03:00
PowerGamer1
73eb62a3cd
DBMS specific workarounds for unsupported SQL92 form of SELECT EXISTS() ( #11369 )
2016-04-17 17:44:52 +03:00
Chris Harris
2f91889b70
Removed unsignedPrimaryKey() schema builder type; now, the unsigned() modifier works with primary key types e.g. pk()->unsigned() or bigpk()->unsigned().
2016-02-26 17:48:03 -08:00
Chris Harris
51b99320bd
Sqlite specific schema builder class actually gets loaded now
2016-02-20 06:53:31 -08:00
Chris Harris
8c0b075bed
Merge branch '9340-add-after-method-to-migrations-schema-builder' into 9562-add-char-datatype
2016-02-20 01:59:00 -08:00
Chris Harris
eaeb926768
Adds char datatype to framework
2016-02-20 01:52:23 -08:00
Chris Harris
0400eb9cee
Resolved merge conflict in changelog
2016-02-18 02:34:02 -08:00
Alexander Makarov
1af5980b35
Removed unused use statement, replaced preg_split with explode
2016-02-16 13:46:13 +03:00
Carsten Brandt
e43c41c9ea
db layer phpdoc fixes
2016-02-07 16:33:26 +01:00
Chris Harris
bce61bd474
Add after() option to migrations schema builder
2015-12-28 06:34:46 -08:00
Alexander Makarov
5cecb09c1b
Fixes #9443 : Added unsigned() to ColumnSchemaBuilder
2015-12-26 15:20:21 +03:00
Hereward Mills
a4acd048bc
Add @throws tags to PHPDocs.
2015-12-24 11:11:03 +00:00
SilverFire - Dmitry Naumenko
cd87d67f34
Global DOCS update: ~~~ replaced with ```
2015-12-02 23:15:28 +02:00
Alexander Makarov
1b3770fd21
Use === instead of == where possible
2015-10-10 01:04:35 +03:00
Alexander Makarov
f83d233072
Fixed method call case to match definition
2015-10-10 00:26:44 +03:00
Matvey Vasenin
d801ca3c90
add mssql support (need test)
2015-08-19 16:42:44 +03:00
Carsten Brandt
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
Carsten Brandt
a2568d1ec8
updated some comments and @since annotations
2015-08-02 19:56:49 +02:00
Sitawit Suteepohnwiroj
5af6105ea7
Fixes #9127 , Fixes #9128 : Fixed MSSQL QueryBuilder::renameColumn() and QueryBuilder::renameTable() escaping
2015-07-16 18:22:40 +03:00
pana1990
3f7ffd6707
Improved SchemaBuilder docs, refactored code
2015-07-08 15:39:34 +03:00
Matvey Vasenin
b456f699cc
Implemented SchemaBuilder
2015-07-08 15:38:21 +03:00
Alexander Mohorev
651ed4ee2c
Undefined class NotSupportedException
2015-06-08 16:11:16 +03:00
Alexander Mohorev
2288f339e6
Parameter type is not compatible with declaration
2015-06-08 16:07:27 +03:00
Jan Waś
ec920d2881
add missing schema name conditions for mssql
...
close #8046
fixes #6234
2015-05-10 00:31:43 +02:00
Carsten Brandt
ef662b57be
added missing @since annotations
2015-04-24 12:09:40 +02:00
John Was
4d1ca9ff17
Fixes #7831 : Add order when fetching database table names and constraints
2015-03-30 22:18:56 +03:00
John Was
29304a185a
Fixes #7833 : Support (materialized) views and foreign tables along normal tables when fetching table schema
2015-03-30 19:01:12 +03:00
Jan Was
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
Carsten Brandt
2aace3714c
minor adjustments
2015-03-01 01:24:28 +01:00
Alexander Makarov
5870a74672
Added Schema::DOUBLE to represent ANSI SQL Double Precision
2015-02-25 16:01:37 +03:00
Jan Waś
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
Yuri Morozov
b9a6b65e89
Implicit type casting to avoid buggy dblib issues
2014-12-25 23:49:20 +03:00
Qiang Xue
44b5e8ef60
Fixes #4954 : MSSQL column comments are not retrieved correctly
2014-09-10 13:44:04 -04:00
Carsten Brandt
e15cfc0286
allow precision for binary type in MSSQL
...
fixes #4931
2014-09-05 15:14:59 +02:00
Qiang Xue
212c5ee3ef
Fixes #4254 : SqlDataProvider does not work with Oracle and SQL Server
2014-09-03 14:42:09 -04:00
Alexander Makarov
7aed617c38
Fixes #4813 : Fixed MSSQL schema that was getting incorrect info about constraints
2014-08-26 14:12:24 +04:00
Qiang Xue
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
mcd.php
20774165bc
Fixes #4644 : Added \yii\db\Schema::createColumnSchema() to be able to customize column schema used
2014-08-12 00:01:27 +04:00
Carsten Brandt
3a1e0f3a5c
property codestyle framework
2014-07-30 00:21:31 +02:00
Alexander Makarov
0edd8bc65a
Fixed missing and incorrect phpdoc
2014-07-25 17:26:35 +04:00
tof06
06bbf017a0
Fixes #4342
2014-07-22 17:39:00 +02:00
Qiang Xue
0a5894fcd8
Fixes #4299
2014-07-13 21:35:35 -04:00
Qiang Xue
43333d9cad
Implemented master balancing.
2014-07-11 22:33:36 -04:00
Qiang Xue
e67d0b3c39
WIP
2014-07-11 14:01:44 -04:00
Qiang Xue
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
Carsten Brandt
5d0452b2ae
rename ColumnSchema::typecast to phpTypecast
2014-06-27 02:12:59 +02:00