Skip to content

Commit

Permalink
Remove null: false not found on master
Browse files Browse the repository at this point in the history
MSP-11385
  • Loading branch information
limhoff-r7 committed Sep 24, 2014
1 parent 6b55dbb commit 7ff2e59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion db/migrate/004_add_events_table.rb
Expand Up @@ -3,7 +3,7 @@ def self.up
create_table :events do |t|
t.integer :workspace_id
t.integer :host_id
t.timestamp :created_at, null: false
t.timestamp :created_at
t.string :user
t.string :name
t.string :info
Expand Down
2 changes: 1 addition & 1 deletion spec/dummy/db/structure.sql
Expand Up @@ -139,7 +139,7 @@ CREATE TABLE events (
id integer NOT NULL,
workspace_id integer,
host_id integer,
created_at timestamp without time zone NOT NULL,
created_at timestamp without time zone,
name character varying(255),
updated_at timestamp without time zone,
critical boolean,
Expand Down

0 comments on commit 7ff2e59

Please sign in to comment.