Procházet zdrojové kódy

Corrected typo in migration in install.rb

A small typo which prevented correct migration: refrences -> references
Sebastian Rehm před 9 roky
rodič
revize
487dd4efc7
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      lib/generators/blazer/templates/install.rb

+ 1 - 1
lib/generators/blazer/templates/install.rb

@@ -18,7 +18,7 @@ class <%= migration_class_name %> < ActiveRecord::Migration
     end
 
     create_table :blazer_dashboards do |t|
-      t.refrences :creator
+      t.references :creator
       t.text :name
       t.timestamps
     end