Skip to content

Commit 6275c7b

Browse files
author
Nicolas Rodriguez
committed
Fix warning
1 parent 30fe7b4 commit 6275c7b

21 files changed

+21
-21
lines changed

test/dummy/db/migrate/20140729162110_create_users.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateUsers < ActiveRecord::Migration
1+
class CreateUsers < ActiveRecord::Migration[4.2]
22
def change
33
create_table :users do |t|
44
t.string :name

test/dummy/db/migrate/20140729162246_create_emails.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateEmails < ActiveRecord::Migration
1+
class CreateEmails < ActiveRecord::Migration[4.2]
22
def change
33
create_table :emails do |t|
44
t.string :address

test/dummy/db/migrate/20140729162335_create_profiles.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateProfiles < ActiveRecord::Migration
1+
class CreateProfiles < ActiveRecord::Migration[4.2]
22
def change
33
create_table :profiles do |t|
44
t.string :twitter_name

test/dummy/db/migrate/20140729164623_create_songs.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateSongs < ActiveRecord::Migration
1+
class CreateSongs < ActiveRecord::Migration[4.2]
22
def change
33
create_table :songs do |t|
44
t.string :title

test/dummy/db/migrate/20140729164653_create_artists.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateArtists < ActiveRecord::Migration
1+
class CreateArtists < ActiveRecord::Migration[4.2]
22
def change
33
create_table :artists do |t|
44
t.string :name

test/dummy/db/migrate/20140729164713_create_producers.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateProducers < ActiveRecord::Migration
1+
class CreateProducers < ActiveRecord::Migration[4.2]
22
def change
33
create_table :producers do |t|
44
t.string :name

test/dummy/db/migrate/20140729165425_create_conferences.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateConferences < ActiveRecord::Migration
1+
class CreateConferences < ActiveRecord::Migration[4.2]
22
def change
33
create_table :conferences do |t|
44
t.string :name

test/dummy/db/migrate/20140729165445_create_speakers.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateSpeakers < ActiveRecord::Migration
1+
class CreateSpeakers < ActiveRecord::Migration[4.2]
22
def change
33
create_table :speakers do |t|
44
t.string :name

test/dummy/db/migrate/20140729165506_create_presentations.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreatePresentations < ActiveRecord::Migration
1+
class CreatePresentations < ActiveRecord::Migration[4.2]
22
def change
33
create_table :presentations do |t|
44
t.string :topic

test/dummy/db/migrate/20140729170014_create_surveys.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateSurveys < ActiveRecord::Migration
1+
class CreateSurveys < ActiveRecord::Migration[4.2]
22
def change
33
create_table :surveys do |t|
44
t.string :name

0 commit comments

Comments
 (0)