Files
danbooru/db/migrate/20130331180246_create_key_values.rb
2013-03-31 14:11:48 -04:00

12 lines
244 B
Ruby

class CreateKeyValues < ActiveRecord::Migration
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