removed deprication issue in invoice migartion, less noise for deployers

This commit is contained in:
Priit Tark 2015-03-27 10:29:45 +02:00
parent 600204da51
commit e13debde82
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
class CreateInvoices < ActiveRecord::Migration class CreateInvoices < ActiveRecord::Migration
def change def change
create_table :invoices do |t| create_table :invoices do |t|
t.timestamps t.timestamps null: false
end end
end end
end end

View file

@ -227,8 +227,8 @@ ActiveRecord::Schema.define(version: 20150320132023) do
add_index "epp_sessions", ["updated_at"], name: "index_epp_sessions_on_updated_at", using: :btree add_index "epp_sessions", ["updated_at"], name: "index_epp_sessions_on_updated_at", using: :btree
create_table "invoices", force: :cascade do |t| create_table "invoices", force: :cascade do |t|
t.datetime "created_at" t.datetime "created_at", null: false
t.datetime "updated_at" t.datetime "updated_at", null: false
end end
create_table "keyrelays", force: :cascade do |t| create_table "keyrelays", force: :cascade do |t|