Files
danbooru/db/migrate/20130331180246_create_key_values.rb
2019-12-22 21:23:37 -06:00

12 lines
245 B
Ruby

class CreateKeyValues < ActiveRecord::Migration[4.2]
def change
create_table :key_values do |t|
t.string :key, :null => false
t.text :value
t.timestamps
end
add_index :key_values, :key, :unique => true
end
end