From e2c04c2b148367c57cc01f899f8f932f3b8cbcb8 Mon Sep 17 00:00:00 2001 From: lukaszreszke Date: Tue, 6 Aug 2024 18:15:28 +0200 Subject: [PATCH] Drop previous orders migration --- .../db/migrate/20150429224522_create_orders.rb | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 rails_application/db/migrate/20150429224522_create_orders.rb diff --git a/rails_application/db/migrate/20150429224522_create_orders.rb b/rails_application/db/migrate/20150429224522_create_orders.rb deleted file mode 100644 index 5cf53c783..000000000 --- a/rails_application/db/migrate/20150429224522_create_orders.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateOrders < ActiveRecord::Migration[5.1] - def change - create_table :orders do |t| - t.string :uid - t.string :number - t.string :customer - t.string :state - end - end -end