Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix updating rich text via nested attributes | George Claghorn | 2019-03-17 | 1 | -0/+8 |
| | | | Closes #35159. | ||||
* | Adds default trix partial | Chris Oliver | 2019-03-05 | 1 | -0/+9 |
| | |||||
* | Allow changing text and blob size without giving the `limit` option | Ryuta Kamizono | 2019-01-29 | 1 | -1/+1 |
| | | | | | | | | | | | | | | In MySQL, the text column size is 65,535 bytes by default (1 GiB in PostgreSQL). It is sometimes too short when people want to use a text column, so they sometimes change the text size to mediumtext (16 MiB) or longtext (4 GiB) by giving the `limit` option. Unlike MySQL, PostgreSQL doesn't allow the `limit` option for a text column (raises ERROR: type modifier is not allowed for type "text"). So `limit: 4294967295` (longtext) couldn't be used in Action Text. I've allowed changing text and blob size without giving the `limit` option, it prevents that migration failure on PostgreSQL. | ||||
* | Revert "Apply `t.timestamps` changes in Action Text and Action Mailbox" | Ryuta Kamizono | 2019-01-29 | 1 | -0/+0 |
| | | | | This reverts commit 30f666f87ab873258b797b39f29cf852f7621bea. | ||||
* | Apply `t.timestamps` changes in Action Text and Action Mailbox | Ryuta Kamizono | 2019-01-29 | 1 | -0/+0 |
| | | | | Follow up #34956. | ||||
* | Make `t.timestamps` with precision by default | Ryuta Kamizono | 2019-01-26 | 1 | -2/+1 |
| | |||||
* | Test actiontext on Rails 6.0 | bogdanvlviv | 2019-01-05 | 3 | -2/+3 |
| | | | | | | | | | | | | - config.load_defaults 6.0 in the dummy app and fix the test since by default rails 6.0 configured does not generate "utf8" hidden input, see #32125 - Use `ActiveRecord::Migration[6.0]` in the dummy app since actiontext will be since Rails 6.0 - Fix `CreateActiveStorageTables` migration in the dummy app. Add `t.foreign_key :active_storage_blobs, column: :blob_id` It was added in 2ae3a29508e. - `rails/actiontext$ yarn install` | ||||
* | Import Action Text | George Claghorn | 2019-01-04 | 4 | -0/+57 |