mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
removed deprication issue in invoice migartion, less noise for deployers
This commit is contained in:
parent
600204da51
commit
e13debde82
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
|
@ -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|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue