mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 07:10:12 +01:00
45 lines
1.5 KiB
Ruby
45 lines
1.5 KiB
Ruby
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
class AddOpenIdTables < ActiveRecord::Migration[5.2]
|
|
def self.up
|
|
create_table "open_id_associations", :force => true do |t|
|
|
t.column "server_url", :binary
|
|
t.column "handle", :string
|
|
t.column "secret", :binary
|
|
t.column "issued", :integer
|
|
t.column "lifetime", :integer
|
|
t.column "assoc_type", :string
|
|
end
|
|
|
|
create_table "open_id_nonces", :force => true do |t|
|
|
t.column "nonce", :string
|
|
t.column "created", :integer
|
|
end
|
|
|
|
create_table "open_id_settings", :force => true do |t|
|
|
t.column "setting", :string
|
|
t.column "value", :binary
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table "open_id_associations"
|
|
drop_table "open_id_nonces"
|
|
drop_table "open_id_settings"
|
|
end
|
|
end
|