Sha256: be2440b448b46933881be7f8fd33e1014282c81eb5e765fac1a0ff7d444ea47c

Contents?: true

Size: 1.3 KB

Versions: 20

Compression:

Stored size: 1.3 KB

Contents

ActiveRecord::Schema.define(:version => 1) do

  create_table :simple_notes, :force => true do |t|
    t.column :body, :text
  end

  create_table :creator_notes, :force => true do |t|
    t.column :body, :text
    t.column :created_by, :integer
    t.column :created_at, :datetime
  end

  create_table :updater_notes, :force => true do |t|
    t.column :body, :text
    t.column :updated_by, :integer
    t.column :updated_at, :datetime
  end

  create_table :deleter_notes, :force => true do |t|
    t.column :body, :text
    t.column :deleted_by, :integer
    t.column :deleted_at, :datetime
  end

  create_table :notes, :force => true do |t|
    t.column :memo_id, :integer
    t.column :body, :text
    t.column :created_by, :integer
    t.column :created_at, :datetime
    t.column :updated_by, :integer
    t.column :updated_at, :datetime
    t.column :deleted_by, :integer
    t.column :deleted_at, :datetime
  end

  create_table :memos, :force => true do |t|
    t.column :note_id, :integer
    t.column :body, :text
    t.column :created_by, :integer
    t.column :created_at, :datetime
    t.column :updated_by, :integer
    t.column :updated_at, :datetime
    t.column :deleted_by, :integer
    t.column :deleted_at, :datetime
  end

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

Version data entries

20 entries across 20 versions & 3 rubygems

Version Path
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/record_with_operator-1.0.1/test/schema.rb
record_with_operator-1.0.1 test/schema.rb
nay-record_with_operator-0.0.10 test/schema.rb
nay-record_with_operator-0.0.11 test/schema.rb
nay-record_with_operator-0.0.14 test/schema.rb
nay-record_with_operator-0.0.16 test/schema.rb
nay-record_with_operator-0.0.17 test/schema.rb
nay-record_with_operator-0.0.18 test/schema.rb
nay-record_with_operator-0.0.19 test/schema.rb
nay-record_with_operator-0.0.20 test/schema.rb
nay-record_with_operator-0.0.3 test/schema.rb
nay-record_with_operator-0.0.4 test/schema.rb
nay-record_with_operator-0.0.5 test/schema.rb
nay-record_with_operator-0.0.6 test/schema.rb
nay-record_with_operator-0.0.7 test/schema.rb
nay-record_with_operator-0.0.8 test/schema.rb
nay-record_with_operator-0.0.9 test/schema.rb
record_with_operator-1.0.0 test/schema.rb
record_with_operator-0.1.0 test/schema.rb
record_with_operator-0.0.22 test/schema.rb