Sha256: ca18f710a42a99e064437cb5de2ba27cd30355da1bf6a4888ea696c253b0a31c
Contents?: true
Size: 398 Bytes
Versions: 1
Compression:
Stored size: 398 Bytes
Contents
class CreateVisualQueryMetadataTable < ActiveRecord::Migration def up create_table :tutuf_visual_query_metadata do |t| t.string :name, :limit => 63, :null => false t.text :params t.text :order_by t.timestamp :created_at end add_index :tutuf_visual_query_metadata, :name, :unique => true end def down drop_table :tutuf_visual_query_metadata end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
visual_query-0.3.0 | db/migrate/20130927090400_create_visual_query_metadata_table.rb |