mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 01:47:18 +02:00
Period validation
This commit is contained in:
parent
6990da7675
commit
1e2dad06f9
6 changed files with 16 additions and 1 deletions
5
db/migrate/20140730104916_add_period_to_domain.rb
Normal file
5
db/migrate/20140730104916_add_period_to_domain.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddPeriodToDomain < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :domains, :period, :integer
|
||||
end
|
||||
end
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20140730082532) do
|
||||
ActiveRecord::Schema.define(version: 20140730104916) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -63,6 +63,7 @@ ActiveRecord::Schema.define(version: 20140730082532) do
|
|||
t.datetime "updated_at"
|
||||
t.string "name_dirty"
|
||||
t.string "name_puny"
|
||||
t.integer "period"
|
||||
end
|
||||
|
||||
create_table "epp_sessions", force: true do |t|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue