Remove unused test data

new_user
1resu 1 year ago
parent 97444ab902
commit 5c89cf1501

@ -1,5 +1,4 @@
class CreateSuppliers < ActiveRecord::Migration[4.2]
SUPPLIER_SAMPLE = 'Sample Supplier'
def self.up
create_table :suppliers do |t|
@ -17,12 +16,6 @@ class CreateSuppliers < ActiveRecord::Migration[4.2]
t.column :updated_on, :datetime
end
add_index(:suppliers, :name, :unique => true)
# Create sample supplier...
puts "Creating sample supplier '#{SUPPLIER_SAMPLE}'..."
Supplier.create(:name => SUPPLIER_SAMPLE, :address => "Organic City", :phone => "0123-555555")
raise "Failed!" unless supplier = Supplier.find_by_name(SUPPLIER_SAMPLE)
end
def self.down

Loading…
Cancel
Save