Skip to content

Commit ffa1acf

Browse files
committed
1 parent 697c6d2 commit ffa1acf

110 files changed

Lines changed: 110 additions & 110 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

db/migrate/20110819224757_devise_create_users.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class DeviseCreateUsers < ActiveRecord::Migration
1+
class DeviseCreateUsers < ActiveRecord::Migration[4.2]
22
def self.up
33
create_table(:users) do |t|
44
## Database authenticatable

db/migrate/20110820005833_create_test_cases.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateTestCases < ActiveRecord::Migration
1+
class CreateTestCases < ActiveRecord::Migration[4.2]
22
def self.up
33
create_table :test_cases do |t|
44
t.text :input

db/migrate/20110820010205_create_problems.rb

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

db/migrate/20110820013719_create_submissions.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateSubmissions < ActiveRecord::Migration
1+
class CreateSubmissions < ActiveRecord::Migration[4.2]
22
def self.up
33
create_table :submissions do |t|
44
t.text :source

db/migrate/20110904033519_create_contest_relations.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateContestRelations < ActiveRecord::Migration
1+
class CreateContestRelations < ActiveRecord::Migration[4.2]
22
def self.up
33
create_table :contest_relations do |t|
44
t.integer :user_id

db/migrate/20110904033742_create_contests.rb

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

db/migrate/20110904045150_create_contests_problems_table.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateContestsProblemsTable < ActiveRecord::Migration
1+
class CreateContestsProblemsTable < ActiveRecord::Migration[4.2]
22
def self.up
33
create_table :contests_problems, id: false do |t|
44
t.integer :contest_id

db/migrate/20110924030742_create_groups.rb

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

db/migrate/20110924035337_create_group_user_table.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateGroupUserTable < ActiveRecord::Migration
1+
class CreateGroupUserTable < ActiveRecord::Migration[4.2]
22
def self.up
33
create_table :groups_users, id: false do |t|
44
t.integer :group_id

db/migrate/20110925021620_create_group_problem_table.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class CreateGroupProblemTable < ActiveRecord::Migration
1+
class CreateGroupProblemTable < ActiveRecord::Migration[4.2]
22
def self.up
33
create_table :groups_problems, id: false do |t|
44
t.integer :group_id

0 commit comments

Comments
 (0)