aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/DoctrineMigrations
Commit message (Collapse)AuthorAgeFilesLines
* Fixed @Kdecherf's reviewNicolas Lœuillet2017-10-131-0/+1
|
* CSJeremy Benoist2017-10-131-3/+3
|
* Changed reading_time field to prevent null valuesNicolas Lœuillet2017-10-131-0/+63
|
* CSJeremy Benoist2017-10-095-7/+7
|
* Merge pull request #3139 from Kdecherf/2502-tag-caseJérémy Benoist2017-09-031-0/+103
|\ | | | | Ignore tag's case
| * php-cs-fixer on DoctrineMigrations/Version20170719231144Kevin Decherf2017-08-271-24/+24
| | | | | | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
| * Add migration to change case of tagsKevin Decherf2017-08-271-0/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This migration does not support SQLite as long as this engine does not support Unicode in LOWER(). This migration starts by retrieving the list of lowercase tags which need to be migrated. Then it retrieves the list of tags for each tags from the previous step in order to migrate entries. It handles deletion of empty tags. At the end the migration makes a full scan to update the label of all remaining tags. WARNING: THIS MIGRATION IS IRREVERSIBLE. Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* | Set a starred_at field when an entry is starred.François D2017-08-251-0/+63
|/ | | | | | | | This date is used to sort starred entries. Can not use Entry::timestamps method otherwise starred_at will be updated each time entry is updated. Add an updateStar method into Entry class A migration script has been added in order to set starred_at field.
* Add a real configuration for CS-FixerJeremy Benoist2017-07-0129-246/+240
|
* Fix reviewsThomas Citharel2017-06-201-1/+1
| | | | | | | | Encrypt username too Redirect to list after saving credentials Fix typos Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Crypt site credential passwordJeremy Benoist2017-06-201-1/+1
|
* Force sequence creation for postgresqlJeremy Benoist2017-06-201-1/+6
|
* Add CRUD for site credentialsJeremy Benoist2017-06-201-0/+56
|
* Merge pull request #3173 from wallabag/domain-name-paramJérémy Benoist2017-06-101-0/+53
|\ | | | | remove craueconfig domain name setting and add a proper one in parame…
| * ReviewJeremy Benoist2017-06-081-1/+2
| |
| * add migrationThomas Citharel2017-06-061-0/+52
| |
* | Merge pull request #3093 from aaa2000/annotation-error-on-saveNicolas Lœuillet2017-06-071-0/+100
|\ \ | |/ |/| Displays an error with an annotation with a too long quote
| * Fix postgresql migrationadev2017-06-071-2/+2
| |
| * Displays an error with an annotation with a too long quoteadev2017-06-041-0/+100
| | | | | | | | Fix #2762
* | API user creation behing a toggleJeremy Benoist2017-06-021-0/+52
|/ | | | | | | | I've added a toggle feature (in internal settings) so that user api creation can be disabled while form registration still can be enabled. Also, the /api/user endpoint shouldn't require authentication. Even if we check the authentication when sending a GET request, to retrieve current user information. I've moved all the internal settings definition to config to avoid duplicated place to define them. I don't know why we didn't did that earlier.
* Added headers field in EntryNicolas Lœuillet2017-05-111-0/+55
|
* Added migration to change length for user fieldsNicolas Lœuillet2017-05-101-0/+60
|
* Cleaned craue_config_setting by removing useless download_pictures settingNicolas Lœuillet2017-04-201-0/+52
|
* Merge pull request #3024 from wallabag/store-dateNicolas Lœuillet2017-04-181-0/+65
|\ | | | | Added publication date and author
| * Fixed migrationsNicolas Lœuillet2017-04-101-0/+5
| |
| * Added author of articleNicolas Lœuillet2017-04-091-1/+6
| |
| * Added publication dateNicolas Lœuillet2017-04-0515-14/+69
| |
* | Removed is_public in Entry edit formNicolas Lœuillet2017-04-1315-15/+15
| |
* | Remove isPublic from Entry entity fix #2598Maxime2017-04-131-0/+51
|/
* Added migration for Scuttle sharingNicolas Lœuillet2017-03-281-0/+54
|
* Added check in migration about uuid fieldNicolas Lœuillet2017-01-301-1/+1
|
* Fixed duplicate entry for share_public in craue_setting_tableNicolas Lœuillet2017-01-301-1/+9
|
* Fixed check on indexNicolas Lœuillet2017-01-271-4/+2
|
* Added indexes on is_archived and is_starredNicolas Lœuillet2017-01-271-0/+58
|
* Merge pull request #2646 from wallabag/explain-migrations-in-docNicolas Lœuillet2017-01-2614-8/+63
|\ | | | | Added explanations about migrations
| * Added hardcoded SQL for migration to 2.2Nicolas Lœuillet2017-01-236-8/+30
| |
| * Added information about latest migrationsNicolas Lœuillet2017-01-2311-0/+33
| |
* | Added migration for SQLiteNicolas Lœuillet2017-01-251-2/+6
| |
* | Added migration to rename uuid to uidNicolas Lœuillet2017-01-141-0/+71
|/
* Renamed uuid to uidNicolas Lœuillet2016-12-292-6/+6
|
* Changed uuid type in databaseNicolas Lœuillet2016-12-251-1/+2
|
* Added index on entry.uuidNicolas Lœuillet2016-12-231-0/+53
| | | | Useful for entry sharing
* Fix bad migration for PostreSQLJeremy Benoist2016-12-231-8/+68
| | | | Queries weren’t executed for PostgreSQL, bad syntax.
* Be consistent between migration & schema definitionJeremy Benoist2016-12-191-0/+1
|
* fixup! Run migration in test, ready for MySQLJeremy Benoist2016-12-191-1/+1
|
* Use actual database nameJeremy Benoist2016-12-191-2/+2
| | | | | | We can't retrieve the environment within the migration. And when we ran migration on Travis, database name isn't `database_name` but `test_database_name`. Retrieve the database name from the connection is more accurate
* pocket_consumer_key can be nullJeremy Benoist2016-12-191-1/+1
|
* Run migration in test, ready for MySQLJeremy Benoist2016-12-192-2/+8
|
* Replaced quotes for PostgresNicolas Lœuillet2016-12-184-6/+6
|
* Ensure craue_config_setting migration are okJeremy Benoist2016-12-154-4/+52
| | | | We now can run the migration every time, new line from `craue_config_setting` are properly checked.