Sha256: 914a7ee3bcfc3cf8b2b33598a148b4889eaad724603a94246d16d6d0d038ca23

Contents?: true

Size: 1.67 KB

Versions: 29

Compression:

Stored size: 1.67 KB

Contents

require 'active_record'
require 'logger'

ActiveRecord::Base.establish_connection(:adapter => 'sqlite3', :database => ':memory:')
ActiveRecord::Base.logger = Logger.new(SPEC_ROOT.join('debug.log'))
ActiveRecord::Migration.verbose = false

ActiveRecord::Schema.define do
  create_table :users, :force => true do |t|
    t.column :name, :string
    t.column :username, :string
    t.column :password, :string
    t.column :activated, :boolean
    t.column :suspended_at, :datetime
    t.column :logins, :integer, :default => 0
    t.column :created_at, :datetime
    t.column :updated_at, :datetime
  end

  create_table :companies, :force => true do |t|
    t.column :name, :string
    t.column :owner_id, :integer
  end

  create_table :authors, :force => true do |t|
    t.column :name, :string
  end

  create_table :books, :force => true do |t|
    t.column :authord_id, :integer
    t.column :title, :string
  end

  create_table :audits, :force => true do |t|
    t.column :auditable_id, :integer
    t.column :auditable_type, :string
    t.column :associated_id, :integer
    t.column :associated_type, :string
    t.column :user_id, :integer
    t.column :user_type, :string
    t.column :username, :string
    t.column :action, :string
    t.column :audited_changes, :text
    t.column :version, :integer, :default => 0
    t.column :comment, :string
    t.column :remote_address, :string
    t.column :created_at, :datetime
  end

  add_index :audits, [:auditable_id, :auditable_type], :name => 'auditable_index'
  add_index :audits, [:associated_id, :associated_type], :name => 'associated_index'
  add_index :audits, [:user_id, :user_type], :name => 'user_index'
  add_index :audits, :created_at
end

Version data entries

29 entries across 29 versions & 3 rubygems

Version Path
notifiably_audited-3.0.0 spec/support/active_record/schema.rb
audited-4.0.0.rc1 spec/support/active_record/schema.rb
notifiably_audited-1.0.11 spec/support/active_record/schema.rb
notifiably_audited-1.0.10 spec/support/active_record/schema.rb
notifiably_audited-1.0.9 spec/support/active_record/schema.rb
notifiably_audited-1.0.8 spec/support/active_record/schema.rb
notifiably_audited-1.0.7 spec/support/active_record/schema.rb
notifiably_audited-1.0.6 spec/support/active_record/schema.rb
notifiably_audited-1.0.5 spec/support/active_record/schema.rb
notifiably_audited-1.0.4 spec/support/active_record/schema.rb
notifiably_audited-1.0.3 spec/support/active_record/schema.rb
notifiably_audited-1.0.2 spec/support/active_record/schema.rb
notifiably_audited-1.0.1 spec/support/active_record/schema.rb
notifiably_audited-1.0.0 spec/support/active_record/schema.rb
notifiably_audited-0.1.12 spec/support/active_record/schema.rb
notifiably_audited-0.1.11 spec/support/active_record/schema.rb
notifiably_audited-0.0.7 spec/support/active_record/schema.rb
notifiably_audited-0.0.5 spec/support/active_record/schema.rb
notifiably_audited-0.0.4 spec/support/active_record/schema.rb
notifiably_audited-0.0.3 spec/support/active_record/schema.rb