Skip to content

Instantly share code, notes, and snippets.

@ugisozols
Created February 24, 2010 10:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ugisozols/313327 to your computer and use it in GitHub Desktop.
Save ugisozols/313327 to your computer and use it in GitHub Desktop.
class CreateAropenitems < ActiveRecord::Migration
def self.up
create_table :aropenitems do |t|
t.integer :cust_no
t.date :doc_date
t.integer :doc_no
t.string :doc_type, :limit => 1
t.integer :apply_to_no
t.date :doc_due_date
t.decimal :amt1, :precision => 9, :scale => 2
t.decimal :amt2, :precision => 9, :scale => 2
t.string :ref, :limit => 30
t.integer :slsmn1
t.integer :slsmn2
t.integer :slsmn3
t.decimal :amt3, :precision => 7, :scale => 2
t.integer :city_county_tax
end
add_index(:aropenitems, [:cust_no, :doc_date, :doc_no, :doc_type], :unique => true, :name => 'cust_doc')
add_index(:aropenitems, [:apply_to_no, :cust_no], :name => 'apply_to')
add_index(:aropenitems, :city_county_tax, :name => 'texas_tax')
end
def self.down
drop_table :aropenitems
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment