Sha256: a343c11b7f802d638568dea8107e3d8ba092f014e67ba0f226cc6b5fa8c0e97e
Contents?: true
Size: 340 Bytes
Versions: 20
Compression:
Stored size: 340 Bytes
Contents
class CreateIdxNodesString < ActiveRecord::Migration def self.up # index strings for nodes create_table :idx_nodes_strings, :options => Zena::Db.table_options do |t| t.integer 'node_id', :null => false t.string 'key' t.string 'value' end end def self.down drop_table 'idx_nodes_strings' end end
Version data entries
20 entries across 20 versions & 1 rubygems