Add Rails release to ActiveRecord::Migration

This commit is contained in:
Patrick Gansterer 2020-08-07 01:14:14 +02:00
parent 44a198c7bc
commit 74531f90c7
108 changed files with 108 additions and 108 deletions

View file

@ -1,4 +1,4 @@
class CreatePolls < ActiveRecord::Migration
class CreatePolls < ActiveRecord::Migration[4.2]
def change
create_table :polls do |t|
t.integer :created_by_user_id, null: false

View file

@ -1,4 +1,4 @@
class IncreaseChoicesSize < ActiveRecord::Migration
class IncreaseChoicesSize < ActiveRecord::Migration[4.2]
def up
change_column :polls, :choices, :text, limit: 65535
end