Originally created by @unmultimedio on GitHub (Dec 2, 2016).
When trying to follow installation
rake db:migrate
Found this error in Rails 5 + PostgreSQL
Running via Spring preloader in process 372
== 20161202004223 CreateCronoJobs: migrating ==================================
-- create_table(:crono_jobs, {})
rake aborted!
StandardError: An error has occurred, this and all later migrations canceled:
The limit on text can be at most 1GB - 1byte.
Which gets easily fixed replacing in migration file:
t.text :log, limit: 1000000000 # For PostgreSQL
Originally created by @unmultimedio on GitHub (Dec 2, 2016).
When trying to follow installation
```
rake db:migrate
```
Found this error in Rails 5 + PostgreSQL
```
Running via Spring preloader in process 372
== 20161202004223 CreateCronoJobs: migrating ==================================
-- create_table(:crono_jobs, {})
rake aborted!
StandardError: An error has occurred, this and all later migrations canceled:
The limit on text can be at most 1GB - 1byte.
```
Which gets easily fixed replacing in migration file:
```
t.text :log, limit: 1000000000 # For PostgreSQL
```
adam
added the bug label 2025-12-29 00:21:41 +01:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @unmultimedio on GitHub (Dec 2, 2016).
When trying to follow installation
Found this error in Rails 5 + PostgreSQL
Which gets easily fixed replacing in migration file:
@plashchynski commented on GitHub (Dec 2, 2016):
@unmultimedio good catch, fixed in v1.1.2