#345: Fixed: relation "parent_platforms" does not exist

This commit is contained in:
Vokhmin Alexey V 2014-03-14 03:21:53 +04:00
parent e7f8fb6312
commit 58c057b5c2
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ class CreatePlatforms < ActiveRecord::Migration
create_table :platforms do |t|
t.string :name
t.string :unixname
t.integer :parent_platform_id
t.integer :parent_platform_id, references: nil
t.timestamps
end