Skip to content

Commit 3c90753

Browse files
manuelmeurerctran
authored andcommitted
add spec for ctran#413 (ctran#533)
1 parent c8ee091 commit 3c90753

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
class NoNamespace < ActiveRecord::Base
2+
enum foo: [:bar, :baz]
3+
end
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
class CreateUsers < ActiveRecord::Migration
2+
def change
3+
create_table :no_namespaces do |t|
4+
t.integer :foo
5+
t.timestamps
6+
end
7+
end
8+
end

0 commit comments

Comments
 (0)