Skip to content

Commit e6cf128

Browse files
committed
[MODEL] Fixed the deprecation messages for timestamps in migrations in integration tests
1 parent 245f033 commit e6cf128

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

elasticsearch-model/examples/activerecord_associations.rb

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,23 @@
2828
ActiveRecord::Schema.define(version: 1) do
2929
create_table :categories do |t|
3030
t.string :title
31-
t.timestamps
31+
t.timestamps null: false
3232
end
3333

3434
create_table :authors do |t|
3535
t.string :first_name, :last_name
36-
t.timestamps
36+
t.timestamps null: false
3737
end
3838

3939
create_table :authorships do |t|
4040
t.references :article
4141
t.references :author
42-
t.timestamps
42+
t.timestamps null: false
4343
end
4444

4545
create_table :articles do |t|
4646
t.string :title
47-
t.timestamps
47+
t.timestamps null: false
4848
end
4949

5050
create_table :articles_categories, id: false do |t|
@@ -54,7 +54,7 @@
5454
create_table :comments do |t|
5555
t.string :text
5656
t.references :article
57-
t.timestamps
57+
t.timestamps null: false
5858
end
5959

6060
add_index(:comments, :article_id) unless index_exists?(:comments, :article_id)

elasticsearch-model/test/integration/active_record_associations_parent_child.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ class ActiveRecordAssociationsParentChildIntegrationTest < Elasticsearch::Test::
7171
t.string :title
7272
t.text :text
7373
t.string :author
74-
t.timestamps
74+
t.timestamps null: false
7575
end
7676

7777
create_table :answers do |t|
7878
t.text :text
7979
t.string :author
8080
t.references :question
81-
t.timestamps
81+
t.timestamps null: false
8282
end
8383

8484
add_index(:answers, :question_id) unless index_exists?(:answers, :question_id)

elasticsearch-model/test/integration/active_record_associations_test.rb

+5-5
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def as_indexed_json(options={})
7070
ActiveRecord::Schema.define(version: 1) do
7171
create_table :categories do |t|
7272
t.string :title
73-
t.timestamps
73+
t.timestamps null: false
7474
end
7575

7676
create_table :categories_posts, id: false do |t|
@@ -79,21 +79,21 @@ def as_indexed_json(options={})
7979

8080
create_table :authors do |t|
8181
t.string :first_name, :last_name
82-
t.timestamps
82+
t.timestamps null: false
8383
end
8484

8585
create_table :authorships do |t|
8686
t.string :first_name, :last_name
8787
t.references :post
8888
t.references :author
89-
t.timestamps
89+
t.timestamps null: false
9090
end
9191

9292
create_table :comments do |t|
9393
t.string :text
9494
t.string :author
9595
t.references :post
96-
t.timestamps
96+
t.timestamps null: false
9797
end
9898

9999
add_index(:comments, :post_id) unless index_exists?(:comments, :post_id)
@@ -102,7 +102,7 @@ def as_indexed_json(options={})
102102
t.string :title
103103
t.text :text
104104
t.boolean :published
105-
t.timestamps
105+
t.timestamps null: false
106106
end
107107
end
108108

0 commit comments

Comments
 (0)