... | ... | @@ -60,8 +60,7 @@ Following the PostgreSQL features list on [this page](https://www.postgresql.org |
|
|
- [ ] DOCS!!!
|
|
|
- [ ] Auxiliary Statements
|
|
|
- [ ] Table Inheritance
|
|
|
- [ ] Composite
|
|
|
- [ ] CTE queries (auxiliary statements)
|
|
|
- [x] CTE queries (auxiliary statements)
|
|
|
- [x] Improve performance by saving `@base_table ||= base_table` and `@query_table ||= query_table`
|
|
|
- [x] Allow access to `table` and `table_name` from the class scope
|
|
|
- [x] Allow those access on the settings too, *this is important for recursivity*
|
... | ... | @@ -76,7 +75,13 @@ Following the PostgreSQL features list on [this page](https://www.postgresql.org |
|
|
- [x] Allow table creation without columns when having inheritance
|
|
|
- [x] Keep `inherits` as an option on schema dump
|
|
|
- [x] FROM ONLY [DOCS](https://www.postgresql.org/docs/9.1/static/ddl-inherit.html)
|
|
|
- [x] Relation method `only` to affect the from operator
|
|
|
- [x] Relation method `only` to affect the FROM operator
|
|
|
- [x] Identify inherited models using `physically_inherited?`
|
|
|
- [x] Create a method to identify all possible child tables
|
|
|
- [ ] Associate this information for each individual connection
|
|
|
- [ ] Method to correctly cast the records
|
|
|
- [ ] Cast a single record
|
|
|
- [ ] Cast multiple records (use a relation function and association)
|
|
|
|
|
|
## next versions
|
|
|
|
... | ... | |