Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/migrations
diff options
context:
space:
mode:
authorWil Clouser <wclouser@mozilla.com>2010-09-03 02:41:17 (GMT)
committer Wil Clouser <wclouser@mozilla.com>2010-09-03 02:41:29 (GMT)
commit208234cb57fea7c6741080874d2d0c4136afd796 (patch)
tree363fdf73e70354a46a4b1aabd8b55cbb9607c7af /migrations
parenta6f0a144e0dc4259feac53496d901c113aee00a7 (diff)
Don't let usernames be null
Diffstat (limited to 'migrations')
-rw-r--r--migrations/73-usernames-not-null.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/migrations/73-usernames-not-null.sql b/migrations/73-usernames-not-null.sql
new file mode 100644
index 0000000..646c1d1
--- /dev/null
+++ b/migrations/73-usernames-not-null.sql
@@ -0,0 +1,4 @@
+-- Originally from migration 66
+
+ALTER TABLE users CHANGE COLUMN `username` `username` varchar(255) NOT NULL;
+