rails_db 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d344f8033229abb378e3078dbda79b5888a56c33
4
- data.tar.gz: e59e2ac708f3011aaada3c31e947189eb09e3d78
3
+ metadata.gz: 0744148ce1143f0b21fb547f3e31c94fb93b212f
4
+ data.tar.gz: a823e510d679989cea7319df6265309035b7a790
5
5
  SHA512:
6
- metadata.gz: 320b1a28ac55849a4272ec7860a0ff285857ec36c1446884912fd308e915c734cb22ecb8484aa59a8f308763358eac78467bee7b39a2cf661fbd6d42cc58b163
7
- data.tar.gz: c6b279415bea449da156068ef716dd9da118ae106663425b19813c88174c9b128f5f0ecd7d10e0434f4130127d8044ab76753ca5015670ed6cf16a8ff1860fb3
6
+ metadata.gz: 182ea1b5b3fc17b55f43dbfad20830ba21c3e7c99e27b43f053a2c79debb38816b192c81f27a0cf8c4733a40d86bd8c7114f2e8f81c7e67a82f2ada95537daa5
7
+ data.tar.gz: 2bd6b7cb10474a435e22383da90a99c8afe968c911a47f98f51cdd39c98a1d99ea15090742bfb8bd5cab5fc8366de7a4e5634d9c8ed88e6b817f85f146f342cc
data/Gemfile CHANGED
@@ -23,3 +23,5 @@ group :test do
23
23
  end
24
24
 
25
25
  gem 'will_paginate', '~> 3.0.6'
26
+
27
+ gem 'paranoia'
data/Gemfile.lock CHANGED
@@ -69,6 +69,7 @@ GEM
69
69
  builder (3.2.3)
70
70
  codemirror-rails (5.16.0)
71
71
  railties (>= 3.0, < 6.0)
72
+ coderay (1.1.2)
72
73
  concurrent-ruby (1.0.5)
73
74
  crass (1.0.4)
74
75
  erubi (1.7.1)
@@ -107,9 +108,16 @@ GEM
107
108
  nio4r (2.3.1)
108
109
  nokogiri (1.8.2)
109
110
  mini_portile2 (~> 2.3.0)
111
+ paranoia (2.4.1)
112
+ activerecord (>= 4.0, < 5.3)
110
113
  pg (1.0.0)
111
114
  polyamorous (1.3.3)
112
115
  activerecord (>= 3.0)
116
+ pry (0.11.3)
117
+ coderay (~> 1.1.0)
118
+ method_source (~> 0.9.0)
119
+ pry-rails (0.3.6)
120
+ pry (>= 0.10.4)
113
121
  public_suffix (3.0.2)
114
122
  rack (2.0.5)
115
123
  rack-test (1.0.0)
@@ -181,7 +189,9 @@ DEPENDENCIES
181
189
  launchy
182
190
  mime-types (< 3.0)
183
191
  mysql2 (<= 0.3.20)
192
+ paranoia
184
193
  pg
194
+ pry-rails
185
195
  rails (= 5.1.6)
186
196
  rails_db!
187
197
  ransack (= 1.8.8)
@@ -7,7 +7,16 @@
7
7
  <% @record.class.columns.each do |column| %>
8
8
  <% name = column.name %>
9
9
  <% next if name == @table.primary_key %>
10
- <%= form.input name, label: name %>
10
+
11
+ <% options = { label: name } %>
12
+ <% options[:include_blank] = true if column.type.to_s =~ /time|date/ %>
13
+ <% if column.type.to_s =~ /text/ %>
14
+ <% options[:input_html] = {} %>
15
+ <% options[:input_html][:rows] = 4 %>
16
+ <% options[:input_html][:cols] = 80 %>
17
+ <% end %>
18
+
19
+ <%= form.input name, options %>
11
20
  <% end %>
12
21
  </div>
13
22
  <%= form.submit 'SAVE', class: 'button small' %>
@@ -1,3 +1,3 @@
1
1
  module RailsDb
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
3
3
  end
data/rails_db.gemspec CHANGED
@@ -31,6 +31,8 @@ Gem::Specification.new do |s|
31
31
  s.add_development_dependency "axlsx_rails"
32
32
  s.add_development_dependency 'will_paginate', '~> 3.0.6'
33
33
  s.add_development_dependency 'mime-types', '< 3.0'
34
+ s.add_development_dependency 'paranoia'
35
+ s.add_development_dependency 'pry-rails'
34
36
  # s.add_development_dependency 'populator'
35
37
  # s.add_development_dependency 'faker'
36
38
  # s.add_development_dependency 'pry'
@@ -1,2 +1,3 @@
1
1
  class Project < ActiveRecord::Base
2
+ acts_as_paranoid
2
3
  end
@@ -13,7 +13,5 @@ class CreateProjects < ActiveRecord::Migration[4.2]
13
13
 
14
14
  t.timestamps null: false
15
15
  end
16
- Project.create(name: 'Project 1')
17
- Project.create(name: 'Project 2')
18
16
  end
19
17
  end
@@ -0,0 +1,6 @@
1
+ class AddDeletedAtToProjects < ActiveRecord::Migration[4.2]
2
+ def change
3
+ add_column :projects, :deleted_at, :datetime
4
+ add_index :projects, :deleted_at
5
+ end
6
+ end
Binary file
Binary file
@@ -10,7 +10,7 @@
10
10
  #
11
11
  # It's strongly recommended that you check this file into your version control system.
12
12
 
13
- ActiveRecord::Schema.define(version: 2017_01_26_124628) do
13
+ ActiveRecord::Schema.define(version: 20180528134358) do
14
14
 
15
15
  create_table "accounts", force: :cascade do |t|
16
16
  t.string "name"
@@ -49,48 +49,50 @@ ActiveRecord::Schema.define(version: 2017_01_26_124628) do
49
49
 
50
50
  create_table "projects", force: :cascade do |t|
51
51
  t.string "name"
52
- t.string "description_245592"
53
- t.string "description_450580"
54
- t.string "description_183349"
55
- t.string "description_341325"
56
- t.string "description_277196"
57
- t.string "description_943405"
58
- t.string "description_904897"
59
- t.string "description_267877"
60
- t.string "description_47807"
61
- t.string "description_713494"
62
- t.string "description_696562"
63
- t.string "description_976508"
64
- t.string "description_918800"
65
- t.string "description_27002"
66
- t.string "description_393763"
67
- t.string "description_960166"
68
- t.string "description_804457"
69
- t.string "description_684568"
70
- t.string "description_98716"
71
- t.string "description_337791"
72
- t.integer "amount_584190"
73
- t.integer "amount_898177"
74
- t.integer "amount_599511"
75
- t.integer "amount_308345"
76
- t.integer "amount_572259"
77
- t.integer "amount_562080"
78
- t.integer "amount_684853"
79
- t.integer "amount_77648"
80
- t.integer "amount_377109"
81
- t.integer "amount_246825"
82
- t.integer "amount_91844"
83
- t.integer "amount_787673"
84
- t.integer "amount_158730"
85
- t.integer "amount_331843"
86
- t.integer "amount_540084"
87
- t.integer "amount_780019"
88
- t.integer "amount_745694"
89
- t.integer "amount_715202"
90
- t.integer "amount_887110"
91
- t.integer "amount_607339"
52
+ t.string "description_579223"
53
+ t.string "description_345401"
54
+ t.string "description_422932"
55
+ t.string "description_70065"
56
+ t.string "description_482605"
57
+ t.string "description_940447"
58
+ t.string "description_740033"
59
+ t.string "description_671952"
60
+ t.string "description_596531"
61
+ t.string "description_86379"
62
+ t.string "description_677943"
63
+ t.string "description_811919"
64
+ t.string "description_46326"
65
+ t.string "description_871123"
66
+ t.string "description_308496"
67
+ t.string "description_725688"
68
+ t.string "description_630564"
69
+ t.string "description_529706"
70
+ t.string "description_580432"
71
+ t.string "description_135352"
72
+ t.integer "amount_148947"
73
+ t.integer "amount_389744"
74
+ t.integer "amount_957940"
75
+ t.integer "amount_236149"
76
+ t.integer "amount_507850"
77
+ t.integer "amount_892431"
78
+ t.integer "amount_362618"
79
+ t.integer "amount_275585"
80
+ t.integer "amount_577887"
81
+ t.integer "amount_125612"
82
+ t.integer "amount_510527"
83
+ t.integer "amount_302316"
84
+ t.integer "amount_505272"
85
+ t.integer "amount_339402"
86
+ t.integer "amount_23870"
87
+ t.integer "amount_730520"
88
+ t.integer "amount_770590"
89
+ t.integer "amount_242937"
90
+ t.integer "amount_825518"
91
+ t.integer "amount_490791"
92
92
  t.datetime "created_at", null: false
93
93
  t.datetime "updated_at", null: false
94
+ t.datetime "deleted_at"
95
+ t.index ["deleted_at"], name: "index_projects_on_deleted_at"
94
96
  end
95
97
 
96
98
  create_table "projects_users", id: false, force: :cascade do |t|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_db
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Kasyanchuk
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-19 00:00:00.000000000 Z
11
+ date: 2018-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -192,6 +192,34 @@ dependencies:
192
192
  - - "<"
193
193
  - !ruby/object:Gem::Version
194
194
  version: '3.0'
195
+ - !ruby/object:Gem::Dependency
196
+ name: paranoia
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: '0'
202
+ type: :development
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: '0'
209
+ - !ruby/object:Gem::Dependency
210
+ name: pry-rails
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ">="
214
+ - !ruby/object:Gem::Version
215
+ version: '0'
216
+ type: :development
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ">="
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
195
223
  description: Quick way to inspect your Rails database, see content of tables, filter,
196
224
  export them to CSV, Excel, EXPLAIN SQL and run SQL queries.
197
225
  email:
@@ -384,6 +412,7 @@ files:
384
412
  - test/dummy/db/migrate/20151028191429_create_legacy_accounts.rb
385
413
  - test/dummy/db/migrate/20151121125538_add_boolean_field_to_user.rb
386
414
  - test/dummy/db/migrate/20170126124628_add_sti_model.rb
415
+ - test/dummy/db/migrate/20180528134358_add_deleted_at_to_projects.rb
387
416
  - test/dummy/db/rails_db.sqlite3
388
417
  - test/dummy/db/rails_db_dev.sqlite3
389
418
  - test/dummy/db/schema.rb
@@ -479,149 +508,150 @@ required_rubygems_version: !ruby/object:Gem::Requirement
479
508
  version: '0'
480
509
  requirements: []
481
510
  rubyforge_project:
482
- rubygems_version: 2.6.14
511
+ rubygems_version: 2.6.8
483
512
  signing_key:
484
513
  specification_version: 4
485
514
  summary: Inspect your Rails DB (table content viewer, execute sql queries, export
486
515
  & import data
487
516
  test_files:
488
- - test/test_sql_mysql.sql
489
517
  - test/sql_import_test.rb
490
- - test/test_sql_postgres.sql
518
+ - test/table_test.rb
519
+ - test/test_sql_mysql.sql
520
+ - test/dummy/db/schema.rb
521
+ - test/dummy/db/rails_db_dev.sqlite3
522
+ - test/dummy/db/migrate/20151027223149_add_non_pk_table.rb
523
+ - test/dummy/db/migrate/20151014074655_create_contacts.rb
524
+ - test/dummy/db/migrate/20151027192250_create_payments.rb
525
+ - test/dummy/db/migrate/20151014074454_create_accounts.rb
526
+ - test/dummy/db/migrate/20151015145740_populate_db.rb
527
+ - test/dummy/db/migrate/20151014152932_add_bd.rb
528
+ - test/dummy/db/migrate/20180528134358_add_deleted_at_to_projects.rb
529
+ - test/dummy/db/migrate/20151028191429_create_legacy_accounts.rb
530
+ - test/dummy/db/migrate/20151013204027_populate_data.rb
531
+ - test/dummy/db/migrate/20151013203757_create_comments.rb
532
+ - test/dummy/db/migrate/20151121125538_add_boolean_field_to_user.rb
533
+ - test/dummy/db/migrate/20151014183823_create_projects.rb
534
+ - test/dummy/db/migrate/20170126124628_add_sti_model.rb
535
+ - test/dummy/db/migrate/20151013203739_create_users.rb
536
+ - test/dummy/db/migrate/20151014184243_add_long_text.rb
537
+ - test/dummy/db/rails_db.sqlite3
538
+ - test/dummy/README.rdoc
539
+ - test/dummy/Rakefile
540
+ - test/dummy/test/fixtures/legacy_accounts.yml
541
+ - test/dummy/test/fixtures/users.yml
542
+ - test/dummy/test/fixtures/contacts.yml
543
+ - test/dummy/test/fixtures/projects.yml
544
+ - test/dummy/test/fixtures/comments.yml
545
+ - test/dummy/test/fixtures/accounts.yml
546
+ - test/dummy/test/models/project_test.rb
547
+ - test/dummy/test/models/user_test.rb
548
+ - test/dummy/test/models/comment_test.rb
549
+ - test/dummy/test/models/legacy_account_test.rb
550
+ - test/dummy/test/models/contact_test.rb
551
+ - test/dummy/test/models/account_test.rb
552
+ - test/dummy/app/assets/javascripts/application.js
553
+ - test/dummy/app/assets/stylesheets/bootstrap-theme.min.css
554
+ - test/dummy/app/assets/stylesheets/bootstrap.min.css
555
+ - test/dummy/app/assets/stylesheets/application.css
556
+ - test/dummy/app/assets/fonts/glyphicons-halflings-regular.eot
557
+ - test/dummy/app/assets/fonts/glyphicons-halflings-regular.svg
558
+ - test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff2
559
+ - test/dummy/app/assets/fonts/glyphicons-halflings-regular.ttf
560
+ - test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff
561
+ - test/dummy/app/helpers/application_helper.rb
562
+ - test/dummy/app/views/home/index.html.erb
563
+ - test/dummy/app/views/layouts/application.html.erb
564
+ - test/dummy/app/models/project.rb
565
+ - test/dummy/app/models/customer.rb
566
+ - test/dummy/app/models/comment.rb
567
+ - test/dummy/app/models/account.rb
568
+ - test/dummy/app/models/contact.rb
569
+ - test/dummy/app/models/populate.rb
570
+ - test/dummy/app/models/legacy_account.rb
571
+ - test/dummy/app/models/payment.rb
572
+ - test/dummy/app/models/user.rb
573
+ - test/dummy/app/controllers/application_controller.rb
574
+ - test/dummy/app/controllers/home_controller.rb
575
+ - test/dummy/bin/rake
576
+ - test/dummy/bin/setup
577
+ - test/dummy/bin/bundle
578
+ - test/dummy/bin/rails
579
+ - test/dummy/config/boot.rb
580
+ - test/dummy/config/application.rb
581
+ - test/dummy/config/database.yml
582
+ - test/dummy/config/environments/production.rb
583
+ - test/dummy/config/environments/test.rb
584
+ - test/dummy/config/environments/development.rb
585
+ - test/dummy/config/routes.rb
586
+ - test/dummy/config/locales/en.yml
587
+ - test/dummy/config/secrets.yml
588
+ - test/dummy/config/initializers/session_store.rb
589
+ - test/dummy/config/initializers/inflections.rb
590
+ - test/dummy/config/initializers/rails_db.rb
591
+ - test/dummy/config/initializers/mime_types.rb
592
+ - test/dummy/config/initializers/wrap_parameters.rb
593
+ - test/dummy/config/initializers/backtrace_silencers.rb
594
+ - test/dummy/config/initializers/filter_parameter_logging.rb
595
+ - test/dummy/config/initializers/assets.rb
596
+ - test/dummy/config/initializers/cookies_serializer.rb
597
+ - test/dummy/config/environment.rb
598
+ - test/dummy/config.ru
599
+ - test/dummy/public/500.html
600
+ - test/dummy/public/favicon.ico
601
+ - test/dummy/public/404.html
602
+ - test/dummy/public/422.html
603
+ - test/dashboard_controller_test.rb
604
+ - test/rails_db_data_table_helper_test.rb
491
605
  - test/database_test.rb
606
+ - test/test_sql_sqlite.sql
607
+ - test/test_sql_postgres.sql
608
+ - test/rails_db_test.rb
492
609
  - test/standalone/Gemfile.lock
493
- - test/standalone/app/helpers/application_helper.rb
610
+ - test/standalone/README.rdoc
611
+ - test/standalone/Rakefile
494
612
  - test/standalone/app/assets/javascripts/application.js
495
- - test/standalone/app/assets/fonts/glyphicons-halflings-regular.woff
496
- - test/standalone/app/assets/fonts/glyphicons-halflings-regular.ttf
497
- - test/standalone/app/assets/fonts/glyphicons-halflings-regular.svg
498
- - test/standalone/app/assets/fonts/glyphicons-halflings-regular.eot
499
- - test/standalone/app/assets/fonts/glyphicons-halflings-regular.woff2
500
- - test/standalone/app/assets/stylesheets/bootstrap.min.css
501
613
  - test/standalone/app/assets/stylesheets/bootstrap-theme.min.css
614
+ - test/standalone/app/assets/stylesheets/bootstrap.min.css
502
615
  - test/standalone/app/assets/stylesheets/application.css
616
+ - test/standalone/app/assets/fonts/glyphicons-halflings-regular.eot
617
+ - test/standalone/app/assets/fonts/glyphicons-halflings-regular.svg
618
+ - test/standalone/app/assets/fonts/glyphicons-halflings-regular.woff2
619
+ - test/standalone/app/assets/fonts/glyphicons-halflings-regular.ttf
620
+ - test/standalone/app/assets/fonts/glyphicons-halflings-regular.woff
621
+ - test/standalone/app/helpers/application_helper.rb
503
622
  - test/standalone/app/views/home/index.html.erb
504
623
  - test/standalone/app/views/layouts/application.html.erb
505
624
  - test/standalone/app/controllers/application_controller.rb
506
625
  - test/standalone/app/controllers/home_controller.rb
507
- - test/standalone/public/404.html
508
- - test/standalone/public/favicon.ico
509
- - test/standalone/public/500.html
510
- - test/standalone/public/422.html
626
+ - test/standalone/bin/rake
627
+ - test/standalone/bin/setup
628
+ - test/standalone/bin/bundle
629
+ - test/standalone/bin/rails
511
630
  - test/standalone/config/boot.rb
512
- - test/standalone/config/database.yml
513
631
  - test/standalone/config/application.rb
514
- - test/standalone/config/locales/en.yml
515
- - test/standalone/config/routes.rb
516
- - test/standalone/config/environments/development.rb
517
- - test/standalone/config/environments/test.rb
632
+ - test/standalone/config/database.yml
518
633
  - test/standalone/config/environments/production.rb
634
+ - test/standalone/config/environments/test.rb
635
+ - test/standalone/config/environments/development.rb
636
+ - test/standalone/config/routes.rb
637
+ - test/standalone/config/locales/en.yml
519
638
  - test/standalone/config/secrets.yml
520
- - test/standalone/config/environment.rb
521
639
  - test/standalone/config/initializers/session_store.rb
522
- - test/standalone/config/initializers/cookies_serializer.rb
523
640
  - test/standalone/config/initializers/inflections.rb
524
- - test/standalone/config/initializers/backtrace_silencers.rb
525
- - test/standalone/config/initializers/mime_types.rb
526
- - test/standalone/config/initializers/assets.rb
527
641
  - test/standalone/config/initializers/rails_db.rb
642
+ - test/standalone/config/initializers/mime_types.rb
528
643
  - test/standalone/config/initializers/wrap_parameters.rb
644
+ - test/standalone/config/initializers/backtrace_silencers.rb
529
645
  - test/standalone/config/initializers/filter_parameter_logging.rb
530
- - test/standalone/Rakefile
646
+ - test/standalone/config/initializers/assets.rb
647
+ - test/standalone/config/initializers/cookies_serializer.rb
648
+ - test/standalone/config/environment.rb
531
649
  - test/standalone/config.ru
532
- - test/standalone/bin/rails
533
- - test/standalone/bin/rake
534
- - test/standalone/bin/bundle
535
- - test/standalone/bin/setup
650
+ - test/standalone/public/500.html
651
+ - test/standalone/public/favicon.ico
652
+ - test/standalone/public/404.html
653
+ - test/standalone/public/422.html
536
654
  - test/standalone/Gemfile
537
- - test/standalone/README.rdoc
655
+ - test/tables_helper_test.rb
538
656
  - test/test_helper.rb
539
- - test/dummy/app/helpers/application_helper.rb
540
- - test/dummy/app/models/user.rb
541
- - test/dummy/app/models/contact.rb
542
- - test/dummy/app/models/customer.rb
543
- - test/dummy/app/models/populate.rb
544
- - test/dummy/app/models/payment.rb
545
- - test/dummy/app/models/legacy_account.rb
546
- - test/dummy/app/models/project.rb
547
- - test/dummy/app/models/account.rb
548
- - test/dummy/app/models/comment.rb
549
- - test/dummy/app/assets/javascripts/application.js
550
- - test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff
551
- - test/dummy/app/assets/fonts/glyphicons-halflings-regular.ttf
552
- - test/dummy/app/assets/fonts/glyphicons-halflings-regular.svg
553
- - test/dummy/app/assets/fonts/glyphicons-halflings-regular.eot
554
- - test/dummy/app/assets/fonts/glyphicons-halflings-regular.woff2
555
- - test/dummy/app/assets/stylesheets/bootstrap.min.css
556
- - test/dummy/app/assets/stylesheets/bootstrap-theme.min.css
557
- - test/dummy/app/assets/stylesheets/application.css
558
- - test/dummy/app/views/home/index.html.erb
559
- - test/dummy/app/views/layouts/application.html.erb
560
- - test/dummy/app/controllers/application_controller.rb
561
- - test/dummy/app/controllers/home_controller.rb
562
- - test/dummy/public/404.html
563
- - test/dummy/public/favicon.ico
564
- - test/dummy/public/500.html
565
- - test/dummy/public/422.html
566
- - test/dummy/config/boot.rb
567
- - test/dummy/config/database.yml
568
- - test/dummy/config/application.rb
569
- - test/dummy/config/locales/en.yml
570
- - test/dummy/config/routes.rb
571
- - test/dummy/config/environments/development.rb
572
- - test/dummy/config/environments/test.rb
573
- - test/dummy/config/environments/production.rb
574
- - test/dummy/config/secrets.yml
575
- - test/dummy/config/environment.rb
576
- - test/dummy/config/initializers/session_store.rb
577
- - test/dummy/config/initializers/cookies_serializer.rb
578
- - test/dummy/config/initializers/inflections.rb
579
- - test/dummy/config/initializers/backtrace_silencers.rb
580
- - test/dummy/config/initializers/mime_types.rb
581
- - test/dummy/config/initializers/assets.rb
582
- - test/dummy/config/initializers/rails_db.rb
583
- - test/dummy/config/initializers/wrap_parameters.rb
584
- - test/dummy/config/initializers/filter_parameter_logging.rb
585
- - test/dummy/Rakefile
586
- - test/dummy/db/schema.rb
587
- - test/dummy/db/rails_db.sqlite3
588
- - test/dummy/db/rails_db_dev.sqlite3
589
- - test/dummy/db/migrate/20151014183823_create_projects.rb
590
- - test/dummy/db/migrate/20170126124628_add_sti_model.rb
591
- - test/dummy/db/migrate/20151014074454_create_accounts.rb
592
- - test/dummy/db/migrate/20151015145740_populate_db.rb
593
- - test/dummy/db/migrate/20151014184243_add_long_text.rb
594
- - test/dummy/db/migrate/20151013204027_populate_data.rb
595
- - test/dummy/db/migrate/20151014152932_add_bd.rb
596
- - test/dummy/db/migrate/20151013203739_create_users.rb
597
- - test/dummy/db/migrate/20151013203757_create_comments.rb
598
- - test/dummy/db/migrate/20151027192250_create_payments.rb
599
- - test/dummy/db/migrate/20151028191429_create_legacy_accounts.rb
600
- - test/dummy/db/migrate/20151027223149_add_non_pk_table.rb
601
- - test/dummy/db/migrate/20151014074655_create_contacts.rb
602
- - test/dummy/db/migrate/20151121125538_add_boolean_field_to_user.rb
603
- - test/dummy/config.ru
604
- - test/dummy/bin/rails
605
- - test/dummy/bin/rake
606
- - test/dummy/bin/bundle
607
- - test/dummy/bin/setup
608
- - test/dummy/test/fixtures/users.yml
609
- - test/dummy/test/fixtures/accounts.yml
610
- - test/dummy/test/fixtures/projects.yml
611
- - test/dummy/test/fixtures/comments.yml
612
- - test/dummy/test/fixtures/legacy_accounts.yml
613
- - test/dummy/test/fixtures/contacts.yml
614
- - test/dummy/test/models/comment_test.rb
615
- - test/dummy/test/models/account_test.rb
616
- - test/dummy/test/models/contact_test.rb
617
- - test/dummy/test/models/legacy_account_test.rb
618
- - test/dummy/test/models/project_test.rb
619
- - test/dummy/test/models/user_test.rb
620
- - test/dummy/README.rdoc
621
657
  - test/sql_query_test.rb
622
- - test/dashboard_controller_test.rb
623
- - test/tables_helper_test.rb
624
- - test/test_sql_sqlite.sql
625
- - test/rails_db_test.rb
626
- - test/table_test.rb
627
- - test/rails_db_data_table_helper_test.rb