Sha256: 84f5a384c331c7e6bff43fc48bb62d1f0487daf3c7cb4c49241e30291b958fd3
Contents?: true
Size: 316 Bytes
Versions: 26
Compression:
Stored size: 316 Bytes
Contents
class CreateSemanticProperties < ActiveRecord::Migration def self.up create_table :semantic_properties do |t| t.timestamps t.text :value, :null => false end # add_index :semantic_properties, :value, :unique => false end def self.down drop_table :semantic_properties end end
Version data entries
26 entries across 26 versions & 1 rubygems