mirror of
https://github.com/internetee/registry.git
synced 2025-07-21 18:26:06 +02:00
Refactor sessions
This commit is contained in:
parent
e2507f8661
commit
744f29c674
18 changed files with 126 additions and 16 deletions
7
db/migrate/20150320132023_create_invoices.rb
Normal file
7
db/migrate/20150320132023_create_invoices.rb
Normal file
|
@ -0,0 +1,7 @@
|
|||
class CreateInvoices < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :invoices do |t|
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20150303151224) do
|
||||
ActiveRecord::Schema.define(version: 20150320132023) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -226,6 +226,11 @@ ActiveRecord::Schema.define(version: 20150303151224) do
|
|||
add_index "epp_sessions", ["session_id"], name: "index_epp_sessions_on_session_id", unique: true, using: :btree
|
||||
add_index "epp_sessions", ["updated_at"], name: "index_epp_sessions_on_updated_at", using: :btree
|
||||
|
||||
create_table "invoices", force: :cascade do |t|
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "keyrelays", force: :cascade do |t|
|
||||
t.integer "domain_id"
|
||||
t.datetime "pa_date"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue