mirror of
https://github.com/internetee/registry.git
synced 2025-07-03 01:33:36 +02:00
Domain name improvements
This commit is contained in:
parent
c5355ca8f5
commit
51091679c4
6 changed files with 34 additions and 6 deletions
6
db/migrate/20140701130945_add_name_dirty_to_domains.rb
Normal file
6
db/migrate/20140701130945_add_name_dirty_to_domains.rb
Normal file
|
@ -0,0 +1,6 @@
|
|||
class AddNameDirtyToDomains < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :domains, :name_dirty, :string
|
||||
add_column :domains, :name_puny, :string
|
||||
end
|
||||
end
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20140627082711) do
|
||||
ActiveRecord::Schema.define(version: 20140701130945) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -59,6 +59,8 @@ ActiveRecord::Schema.define(version: 20140627082711) do
|
|||
t.string "auth_info"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.string "name_dirty"
|
||||
t.string "name_puny"
|
||||
end
|
||||
|
||||
create_table "epp_sessions", force: true do |t|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue